You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
carbon/.eslintrc.js

30 lines
798 B
JavaScript

module.exports = {
parser: 'babel-eslint',
env: {
browser: true,
es6: true,
6 years ago
node: true,
jest: true
},
extends: ['eslint:recommended', 'plugin:react/recommended', 'plugin:jsx-a11y/recommended'],
plugins: ['import', 'react', 'jsx-a11y', 'react-hooks'],
rules: {
'import/no-unresolved': 'error',
'no-duplicate-imports': 'error',
'react/prop-types': 'off',
'react/display-name': 'off',
'react/jsx-no-target-blank': 'error',
'react/jsx-uses-react': 'error',
'react/jsx-uses-vars': 'error',
'jsx-a11y/click-events-have-key-events': 'off',
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'error',
'no-console': ['error', { allow: ['error'] }]
},
settings: {
react: {
version: 'detect'
}
}
}