mirror of
https://gitlab.com/MrFry/moodle-test-userscript
synced 2025-04-01 20:22:48 +02:00
20 lines
438 B
JavaScript
20 lines
438 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
node: true,
|
|
jest: true,
|
|
},
|
|
extends: ["eslint:recommended"],
|
|
globals: {
|
|
Atomics: "readonly",
|
|
SharedArrayBuffer: "readonly",
|
|
},
|
|
rules: {
|
|
"no-extra-semi": "off",
|
|
"no-undef": ["warn"],
|
|
eqeqeq: ["warn", "smart"],
|
|
"no-unused-vars": "off",
|
|
"no-prototype-builtins": "off",
|
|
},
|
|
}
|