forecastAppFrontend/.eslintrc.json

20 lines
348 B
JSON
Raw Permalink Normal View History

2024-07-13 12:54:55 +00:00
{
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"react/react-in-jsx-scope": "off"
}
}