You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
322 B
JavaScript
16 lines
322 B
JavaScript
|
2 months ago
|
module.exports = {
|
||
|
|
env: {
|
||
|
|
node: true,
|
||
|
|
es2022: true,
|
||
|
|
},
|
||
|
|
extends: ['eslint:recommended'],
|
||
|
|
parserOptions: {
|
||
|
|
ecmaVersion: 2022,
|
||
|
|
sourceType: 'script',
|
||
|
|
},
|
||
|
|
rules: {
|
||
|
|
'no-console': 'off', // Console autorisé dans cette app legacy
|
||
|
|
'no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
|
||
|
|
},
|
||
|
|
}
|