From 9696ca1ede6f852d5fbb4bb41b450a2855e5f2f7 Mon Sep 17 00:00:00 2001 From: Robert DeLuca Date: Sun, 21 May 2017 14:42:55 -0500 Subject: [PATCH] Remove `flowtype/require-valid-file-annotation` temporarily. (#2311) Until this issue (https://github.com/gajus/eslint-plugin-flowtype/issues/165) is fixed we're disabling `flowtype/require-valid-file-annotation`. --- packages/eslint-config-react-app/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/eslint-config-react-app/index.js b/packages/eslint-config-react-app/index.js index 8af2bdb..3dcce55 100644 --- a/packages/eslint-config-react-app/index.js +++ b/packages/eslint-config-react-app/index.js @@ -282,7 +282,8 @@ module.exports = { // https://github.com/gajus/eslint-plugin-flowtype 'flowtype/define-flow-type': 'warn', - 'flowtype/require-valid-file-annotation': 'warn', + // TODO: Reenable once https://github.com/gajus/eslint-plugin-flowtype/issues/165 is fixed + //'flowtype/require-valid-file-annotation': 'warn', 'flowtype/use-flow-type': 'warn', }, };