From 3a3761a9c203ead0b9f3d8f0a4d97f5d289e44e9 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Thu, 21 Nov 2019 15:22:05 -0300 Subject: [PATCH] (fix) linting issues --- .eslintignore | 2 ++ .flowconfig | 4 ++++ flow-typed/npm/history_v4.x.x.js | 7 ++++--- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.eslintignore b/.eslintignore index f22a6e9c..3d16c077 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,2 +1,4 @@ node_modules/ build_webpack/ +flow_typed/ +config/ diff --git a/.flowconfig b/.flowconfig index 37c72da2..ac88e7c5 100644 --- a/.flowconfig +++ b/.flowconfig @@ -1,6 +1,10 @@ [ignore] .*/node_modules/findup/* +.*/node_modules/** +.*/config/** +.*/migrations/** .*/flow-typed/** +.*/scripts/** [include] /src/** diff --git a/flow-typed/npm/history_v4.x.x.js b/flow-typed/npm/history_v4.x.x.js index f404fe95..46688cf8 100644 --- a/flow-typed/npm/history_v4.x.x.js +++ b/flow-typed/npm/history_v4.x.x.js @@ -1,7 +1,8 @@ +// @flow // flow-typed signature: 984f6785a321187ac15c3434bbd7f25d // flow-typed version: 568ec63cee/history_v4.x.x/flow_>=v0.25.x -declare module "history/createBrowserHistory" { +declare module 'history/createBrowserHistory' { declare function Unblock(): void; declare export type Action = "PUSH" | "REPLACE" | "POP"; @@ -42,7 +43,7 @@ declare module "history/createBrowserHistory" { declare export default (opts?: HistoryOpts) => BrowserHistory; } -declare module "history/createMemoryHistory" { +declare module 'history/createMemoryHistory' { declare function Unblock(): void; declare export type Action = "PUSH" | "REPLACE" | "POP"; @@ -88,7 +89,7 @@ declare module "history/createMemoryHistory" { declare export default (opts?: HistoryOpts) => MemoryHistory; } -declare module "history/createHashHistory" { +declare module 'history/createHashHistory' { declare function Unblock(): void; declare export type Action = "PUSH" | "REPLACE" | "POP";