vscode/.eslintrc.json

21 lines
309 B
JSON
Raw Normal View History

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