2015-10-21 22:20:44 +00:00
|
|
|
{
|
|
|
|
"root": true,
|
2016-11-14 18:48:50 +00:00
|
|
|
"env": {
|
|
|
|
"es6": true,
|
|
|
|
"node": true
|
|
|
|
},
|
2015-10-21 22:20:44 +00:00
|
|
|
"extends": "eslint:recommended",
|
|
|
|
"rules": {
|
|
|
|
"comma-dangle": 0,
|
2016-03-02 23:16:22 +00:00
|
|
|
"no-empty": 0,
|
2016-11-14 18:48:50 +00:00
|
|
|
"no-unused-vars": [
|
|
|
|
"warn", {
|
|
|
|
"varsIgnorePattern": "^_",
|
|
|
|
"argsIgnorePattern": "^_"
|
|
|
|
}
|
|
|
|
],
|
2015-10-21 22:20:44 +00:00
|
|
|
"strict": [2, "global"]
|
|
|
|
}
|
|
|
|
}
|