1
0
forked from notnull/chatz
chatz/server/.eslintrc
2019-07-11 15:36:07 -04:00

21 lines
302 B
Plaintext

{
"extends": ["eslint:recommended"],
"parserOptions": {
"ecmaVersion": 8
},
"env": {
"es6": true,
"node": true
},
"rules": {
"quotes": ["warn", "single"],
"semi": ["warn", "never"],
"indent": ["warn", 2],
"no-unused-vars": ["warn"],
"no-console": 0
}
}