19 lines
331 B
JavaScript
19 lines
331 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true
|
|
},
|
|
extends: ['plugin:react/recommended', 'standard'],
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
jsx: true
|
|
},
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module'
|
|
},
|
|
plugins: ['react'],
|
|
rules: {
|
|
'react/prop-types': 'off',
|
|
'indent': 'off'
|
|
}
|
|
}
|