From b3c37dc067414166029219836801c8f0c6f5f446 Mon Sep 17 00:00:00 2001 From: Atvaark Date: Fri, 6 Oct 2017 21:08:01 +0200 Subject: [PATCH] Fix Invalid_flowconfig error (#505) The .flowconfig file had an empty line at the start which causes the following issue when running the "npm test:flow" command: {"code":8,"reason":"Invalid_flowconfig","msg":".flowconfig:1 Unexpected config line not in any section"} Microsoft Windows 10 Pro Build 15063 Node v8.6.0 Flow 0.55.0 --- .flowconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.flowconfig b/.flowconfig index c34c95b2b..d6141c530 100644 --- a/.flowconfig +++ b/.flowconfig @@ -1,4 +1,3 @@ - [ignore] .*/node_modules/.* .*/__fixtures__/.* @@ -11,4 +10,4 @@ flow-typed/ [options] esproposal.decorators=ignore -[lints] \ No newline at end of file +[lints]