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.
47 lines
764 B
47 lines
764 B
{
|
|
"extends": "standard",
|
|
"env": {
|
|
"es6": true,
|
|
"jest": true,
|
|
"node": true
|
|
},
|
|
"globals": {
|
|
"GENTLY": true
|
|
},
|
|
"rules": {
|
|
"no-multi-spaces": 0,
|
|
"comma-dangle": [
|
|
"error",
|
|
"always-multiline"
|
|
],
|
|
"key-spacing": [
|
|
"error",
|
|
{
|
|
"multiLine": {
|
|
"beforeColon": false,
|
|
"afterColon": true
|
|
},
|
|
"align": {
|
|
"beforeColon": false,
|
|
"afterColon": true,
|
|
"on": "colon",
|
|
"mode": "strict"
|
|
}
|
|
}
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"no-var": [
|
|
"error"
|
|
],
|
|
"prefer-const": [
|
|
"error",
|
|
{
|
|
"destructuring": "any",
|
|
"ignoreReadBeforeAssign": false
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|