57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
|
|
/** @type {import('eslint').Linter.FlatConfig[]} */
|
||
|
|
module.exports = [
|
||
|
|
{
|
||
|
|
ignores: [
|
||
|
|
'web/vendor/**',
|
||
|
|
'vendor/**',
|
||
|
|
'node_modules/**',
|
||
|
|
],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
files: ['web/js/**/*.js'],
|
||
|
|
languageOptions: {
|
||
|
|
ecmaVersion: 2022,
|
||
|
|
sourceType: 'module',
|
||
|
|
globals: {
|
||
|
|
window: 'readonly',
|
||
|
|
document: 'readonly',
|
||
|
|
navigator: 'readonly',
|
||
|
|
location: 'readonly',
|
||
|
|
history: 'readonly',
|
||
|
|
localStorage: 'readonly',
|
||
|
|
sessionStorage: 'readonly',
|
||
|
|
console: 'readonly',
|
||
|
|
URL: 'readonly',
|
||
|
|
URLSearchParams: 'readonly',
|
||
|
|
FormData: 'readonly',
|
||
|
|
MutationObserver: 'readonly',
|
||
|
|
CustomEvent: 'readonly',
|
||
|
|
Event: 'readonly',
|
||
|
|
fetch: 'readonly',
|
||
|
|
setTimeout: 'readonly',
|
||
|
|
clearTimeout: 'readonly',
|
||
|
|
setInterval: 'readonly',
|
||
|
|
clearInterval: 'readonly',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
linterOptions: {
|
||
|
|
reportUnusedDisableDirectives: 'error',
|
||
|
|
},
|
||
|
|
rules: {
|
||
|
|
'no-debugger': 'error',
|
||
|
|
'no-redeclare': 'error',
|
||
|
|
'no-unused-vars': [
|
||
|
|
'error',
|
||
|
|
{
|
||
|
|
args: 'none',
|
||
|
|
caughtErrors: 'none',
|
||
|
|
ignoreRestSiblings: true,
|
||
|
|
},
|
||
|
|
],
|
||
|
|
'no-console': ['warn', { allow: ['warn', 'error'] }],
|
||
|
|
eqeqeq: ['error', 'always'],
|
||
|
|
curly: ['error', 'all'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
];
|