Files
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

29 lines
554 B
Plaintext

{
"root": true,
"parser": "babel-eslint",
"extends": "eslint-config-airbnb",
"env": {
"browser": true,
"node": true,
"mocha": true,
},
"rules": {
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2,
"react/jsx-quotes": 0,
"react/jsx-filename-extension": 0,
"jsx-quotes": 2,
"comma-dangle": 0,
"indent": [2, 2, {"SwitchCase": 1}],
"max-len": 0,
"no-console": 0,
"no-alert": 0,
"no-param-reassign": 0,
"no-shadow": 0,
"no-undef": 2,
},
"plugins": [
"react"
]
}