From 3260d17f07ff1200a326065c819c2b52bd8a4085 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 8af2bdb9f8a..3dcce554046 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', }, };