(fix) linting issues

This commit is contained in:
Gabriel Rodriguez Alsina 2019-11-21 15:22:05 -03:00
parent 13d1de8251
commit 3a3761a9c2
3 changed files with 10 additions and 3 deletions

View File

@ -1,2 +1,4 @@
node_modules/
build_webpack/
flow_typed/
config/

View File

@ -1,6 +1,10 @@
[ignore]
.*/node_modules/findup/*
.*/node_modules/**
.*/config/**
.*/migrations/**
.*/flow-typed/**
.*/scripts/**
[include]
<PROJECT_ROOT>/src/**

View File

@ -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";