eslint-config-wikimedia
Version:
ESLint config following Wikimedia code conventions.
19 lines (18 loc) • 382 B
JSON
{
"extends": [
"../common"
],
"env": {
"browser": true
},
"plugins": [ "unicorn" ],
"rules": {
"no-alert": "error",
"no-console": "error",
"no-implied-eval": "error",
"unicorn/no-invalid-remove-event-listener": "error",
"security/detect-non-literal-regexp": "off",
"security/detect-unsafe-regex": "off",
"security/detect-possible-timing-attacks": "off"
}
}