mirror of https://github.com/sgoudham/carbon.git
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.
32 lines
719 B
JavaScript
32 lines
719 B
JavaScript
module.exports = {
|
|
parser: 'babel-eslint',
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
node: true
|
|
},
|
|
extends: ['eslint:recommended', 'plugin:react/recommended', 'plugin:jsx-a11y/recommended'],
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
experimentalObjectRestSpread: true,
|
|
jsx: true
|
|
},
|
|
sourceType: 'module'
|
|
},
|
|
plugins: ['react', 'import', 'jsx-a11y'],
|
|
rules: {
|
|
'react/prop-types': 'off',
|
|
'react/display-name': 'off',
|
|
'react/jsx-uses-react': 'error',
|
|
'react/jsx-uses-vars': 'error',
|
|
'import/no-unresolved': 'error',
|
|
'no-duplicate-imports': 'error',
|
|
'jsx-a11y/click-events-have-key-events': 'off'
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: '16.7'
|
|
}
|
|
}
|
|
}
|