2025-02-14 11:13:18 +01:00
|
|
|
{
|
|
|
|
|
"env": {
|
|
|
|
|
"browser": true,
|
|
|
|
|
"node": true,
|
|
|
|
|
"es6": true
|
|
|
|
|
},
|
|
|
|
|
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
|
|
|
|
|
"rules": {
|
2025-02-14 12:23:50 +01:00
|
|
|
"prettier/prettier": "error"
|
2025-02-14 12:23:23 +01:00
|
|
|
},
|
|
|
|
|
"parserOptions": {
|
|
|
|
|
"ecmaVersion": 8
|
2025-02-14 12:09:21 +01:00
|
|
|
},
|
|
|
|
|
"plugins": ["prettier"],
|
|
|
|
|
"overrides": [
|
|
|
|
|
{
|
|
|
|
|
"files": ["src/public/javascript/*.js"],
|
|
|
|
|
"rules": {
|
|
|
|
|
"no-unused-vars": "off"
|
2025-02-14 11:13:18 +01:00
|
|
|
}
|
2025-02-14 12:09:21 +01:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|