27 lines
512 B
JSON
27 lines
512 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"parser": "babel-eslint",
|
|
"extends": "wesbos",
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["react"],
|
|
"rules": {
|
|
"jsx-a11y/href-no-hash": "off",
|
|
"jsx-a11y/img-has-alt": "off",
|
|
"import/prefer-default-export": "off",
|
|
"react-hooks/exhaustive-deps": "off"
|
|
}
|
|
}
|