mirror of
https://gitlab.com/MrFry/moodle-test-userscript
synced 2025-04-01 20:22:48 +02:00
23 lines
465 B
JavaScript
23 lines
465 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 8,
|
|
},
|
|
extends: ['eslint:recommended'],
|
|
globals: {
|
|
Atomics: 'readonly',
|
|
SharedArrayBuffer: 'readonly',
|
|
},
|
|
rules: {
|
|
'no-extra-semi': 'off',
|
|
'no-undef': ['error'],
|
|
eqeqeq: ['warn', 'smart'],
|
|
'no-unused-vars': 'warn',
|
|
'no-prototype-builtins': 'off',
|
|
'object-shorthand': ['warn', 'never'],
|
|
'prefer-const': 'warn',
|
|
},
|
|
}
|