1
0
Fork 0
mirror of https://github.com/sexybiggetje/pixdisp.git synced 2024-11-14 07:41:03 +01:00
pixdisp/.eslintrc.json
2018-01-07 09:41:17 +01:00

38 lines
No EOL
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"
}
}