pixdisp/.eslintrc.json

38 lines
739 B
JSON

{
"env": {
"es6": true,
"node": true
},
"plugins": [
"security"
],
"extends": [
"eslint:recommended",
"plugin:security/recommended"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-case-declarations": "off",
"no-console": "off",
"security/detect-new-buffer": "off",
"security/detect-object-injection": "off"
}
}