typescript eslint plugin

Summary: This is required to properly run eslint in Atom/VSCode on TypeScript files

Reviewed By: jknoxville

Differential Revision: D16201418

fbshipit-source-id: 31da04c2d313e9147e0f868c1af15bf3115e6d6a
This commit is contained in:
Daniel Büchele
2019-07-29 06:32:21 -07:00
committed by Facebook Github Bot
parent 2dd580f24a
commit 2c7371d264
4 changed files with 58 additions and 9 deletions

View File

@@ -64,7 +64,7 @@ type DispatchFromProps = {
toggleLeftSidebarVisible: (visible?: boolean) => void,
toggleRightSidebarVisible: (visible?: boolean) => void,
setActiveSheet: (sheet: ActiveSheet) => void,
setFlipperRating: number => void,
setFlipperRating: (rating: number) => void,
};
type StateFromProps = {
@@ -74,7 +74,7 @@ type StateFromProps = {
rightSidebarAvailable: boolean,
downloadingImportData: boolean,
launcherMsg: LauncherMsg,
flipperRating: ?number,
flipperRating: number | null,
};
const VersionText = styled(Text)({