diff options
Diffstat (limited to 'modern/.eslintrc.js')
-rw-r--r-- | modern/.eslintrc.js | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/modern/.eslintrc.js b/modern/.eslintrc.js index 4ee202f5..d6380a85 100644 --- a/modern/.eslintrc.js +++ b/modern/.eslintrc.js @@ -1,3 +1,18 @@ module.exports = { - "extends": "airbnb" -};
\ No newline at end of file + extends: 'airbnb', + plugins: [ + 'react', + ], + ignorePatterns: ['serviceWorker.js', 'localization.js', 'switcher.js'], + rules: { + 'max-len': [0], + 'no-shadow': [0], + 'no-return-assign': [0], + 'no-param-reassign': [0], + 'no-prototype-builtins': [0], + 'react/jsx-filename-extension': [1, { extensions: ['.js'] }], + 'react/prop-types': [0], + 'react/jsx-props-no-spreading': [0], + 'jsx-a11y/anchor-is-valid': [0], + }, +}; |