15 lines
224 B
Plaintext
15 lines
224 B
Plaintext
|
{
|
||
|
"root": true,
|
||
|
"extends": "eslint:recommended",
|
||
|
"env": {
|
||
|
"commonjs": true,
|
||
|
"browser": true,
|
||
|
"es6": true,
|
||
|
},
|
||
|
"rules": {
|
||
|
"comma-dangle": 0,
|
||
|
"no-unused-vars": 1,
|
||
|
"strict": [2, "global"]
|
||
|
}
|
||
|
}
|