38 строки
1.1 KiB
JavaScript
38 строки
1.1 KiB
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
jest: true,
|
|
node: true,
|
|
},
|
|
extends: ['eslint:recommended', 'plugin:react/recommended', 'prettier'],
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
},
|
|
plugins: ['react', 'prettier'],
|
|
rules: {
|
|
'prettier/prettier': 'error',
|
|
'react/prop-types': 'off',
|
|
'no-unused-vars': [
|
|
'error',
|
|
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
|
|
],
|
|
},
|
|
settings: {
|
|
react: {
|
|
createClass: 'createReactClass', // Regex for Component Factory to use,
|
|
// default to "createReactClass"
|
|
pragma: 'React', // Pragma to use, default to "React"
|
|
fragment: 'Fragment', // Fragment to use (may be a property of <pragma>), default to "Fragment"
|
|
version: 'detect', // React version. "detect" automatically picks the version you have installed.
|
|
// You can also use `16.0`, `16.3`, etc, if you want to override the detected value.
|
|
// It will default to "latest" and warn if missing, and to "detect" in the future
|
|
flowVersion: '0.53', // Flow version
|
|
},
|
|
},
|
|
};
|