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.
25 lines
463 B
25 lines
463 B
{
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"strict": 0,
|
|
"camelcase": 0,
|
|
"curly": 0,
|
|
"indent": [2, "tab", { "SwitchCase": 1 }],
|
|
"eol-last": 1,
|
|
"no-shadow": 0,
|
|
"no-redeclare": 2,
|
|
"no-extra-bind": 1,
|
|
"no-empty": 0,
|
|
"no-process-exit": 1,
|
|
"no-underscore-dangle": 0,
|
|
"no-use-before-define": 0,
|
|
"no-unused-vars": 0,
|
|
"consistent-return": 0,
|
|
"no-inner-declarations": 1,
|
|
"no-loop-func": 1,
|
|
"space-before-function-paren": [2, "never"]
|
|
}
|
|
}
|