vscode/.eslintrc.json

21 lines
309 B
JSON
Raw Normal View History

2016-02-19 15:08:39 +01:00
{
2018-09-10 17:51:23 +02:00
"root": true,
"env": {
"node": true,
"es6": true
},
2016-02-19 15:08:39 +01:00
"rules": {
2016-07-18 11:02:47 +02:00
"no-console": 0,
2016-07-20 11:17:23 +02:00
"no-cond-assign": 0,
2016-09-05 12:04:50 +02:00
"no-unused-vars": 1,
"no-extra-semi": "warn",
"semi": "warn"
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
}
2018-09-10 17:51:23 +02:00
}