2023-09-06 15:14:50 +00:00
|
|
|
module.exports = {
|
2024-03-18 10:19:47 +00:00
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es2021": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:react/recommended"
|
2023-09-06 15:14:50 +00:00
|
|
|
],
|
2024-03-18 10:19:47 +00:00
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
".eslintrc.{js,cjs}"
|
|
|
|
],
|
|
|
|
"parserOptions": {
|
|
|
|
"sourceType": "script"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": "latest",
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"react"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
}
|
2023-09-06 15:14:50 +00:00
|
|
|
}
|