From 2d399da972ef4ce73cf2eb6a1bc4e7f544b87f51 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Sun, 30 Jun 2019 22:35:04 +0300 Subject: [PATCH] Flow: Synchronise config with 'graphql-js' (#519) --- .flowconfig | 47 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 45 insertions(+), 2 deletions(-) diff --git a/.flowconfig b/.flowconfig index 7e618548..21db7ece 100644 --- a/.flowconfig +++ b/.flowconfig @@ -1,6 +1,49 @@ [ignore] -.*/dist/.* -.*/node_modules/flow-bin/.* +.* +!/src +!/node_modules/express +!/node_modules/restify +!/node_modules/connect +!/node_modules/graphql +!/node_modules/accepts +!/node_modules/iterall +!/node_modules/raw-body +!/node_modules/body-parser +!/node_modules/http-errors +!/node_modules/content-type +!/node_modules/chai +!/node_modules/mocha +!/node_modules/sinon +!/node_modules/multer +!/node_modules/supertest + +[include] [libs] ./resources/interfaces + +[lints] +sketchy-null-bool=off +sketchy-null-string=off +sketchy-null-number=error +sketchy-null-mixed=off +sketchy-number=error +untyped-type-import=off +nonstrict-import=off +untyped-import=off +unclear-type=off +deprecated-type=error +deprecated-utility=error +dynamic-export=off +unsafe-getters-setters=error +inexact-spread=error +implicit-inexact-object=off +unnecessary-optional-chain=error +unnecessary-invariant=error + +[options] +include_warnings=true +module.use_strict=true + +[version] +^0.102.0