We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cdd200 commit 54f8455Copy full SHA for 54f8455
src/config/eslint.js
@@ -16,10 +16,11 @@ module.exports = {
16
plugins: ['flowtype'],
17
rules: {
18
// airbnb config modifications
19
- 'no-unused-vars': 'warn',
+ 'no-unused-vars': 'warn', // easier for development
20
'linebreak-style': 'off',
21
- 'arrow-parens': 'off', // ['error', 'as-needed'], conflict with prettier
22
- 'react/prop-types': 'off', // conflict with Flow
+ 'arrow-parens': 'off', // conflict with Prettier
+ 'react/prop-types': 'off', // not needed with Flow
23
+ 'react/require-default-props': 'off', // not needed with Flow
24
'react/jsx-filename-extension': ['error', { extensions: ['.js', '.jsx'] }],
25
26
// flowtype
0 commit comments