You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
397 B
20 lines
397 B
1 year ago
|
{
|
||
|
"extends": "standard",
|
||
|
"plugins": [
|
||
|
"chai-friendly"
|
||
|
],
|
||
|
"rules": {
|
||
|
"semi": [2, "always"],
|
||
|
"space-before-function-paren": ["error", "never"],
|
||
|
"no-useless-escape": 0,
|
||
|
"no-unused-expressions": 0,
|
||
|
"chai-friendly/no-unused-expressions": 2
|
||
|
},
|
||
|
"env": {
|
||
|
"es6": true,
|
||
|
"browser": true,
|
||
|
"jquery": true,
|
||
|
"mocha": true
|
||
|
}
|
||
|
}
|