-
Notifications
You must be signed in to change notification settings - Fork 12
/
.eslintrc.json
36 lines (36 loc) · 1 KB
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"root": true,
"extends": "wikimedia/server",
"rules": {
"array-bracket-spacing": "off",
"arrow-parens": "off",
"camelcase": "off",
"comma-dangle": "off",
"comma-spacing": "off",
"computed-property-spacing": "off",
"key-spacing": "off",
"max-statements-per-line": "off",
"no-multi-spaces": "off",
"no-underscore-dangle": "off",
"no-unused-expressions": "off",
"no-restricted-syntax": "off",
"no-unused-vars": "off",
"one-var": "off",
"operator-linebreak": "off",
"space-before-function-paren": "off",
"space-in-parens": "off",
"jsdoc/no-undefined-types": "off",
"jsdoc/valid-types": "off",
"jsdoc/check-access": "off",
"jsdoc/check-param-names": "off",
"jsdoc/check-types": "off",
"jsdoc/require-param": "off",
"jsdoc/require-param-type": "off",
"jsdoc/require-returns": "off",
"jsdoc/require-returns-check": "off",
"n/no-unsupported-features/node-builtins": "warn",
"implicit-arrow-linebreak": "warn",
"no-mixed-spaces-and-tabs": "warn",
"semi-style": "warn"
}
}