forked from PreMiD/Presences
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
81 lines (81 loc) · 2.18 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"root": true,
"env": {
"browser": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:eqeqeq-fix/recommended",
"plugin:prettier/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2021,
"project": "./tsconfig.json"
},
"rules": {
"semi": ["error", "always", { "omitLastInOneLineBlock": true }],
"no-multiple-empty-lines": [
"error",
{ "max": 2, "maxEOF": 0, "maxBOF": 0 }
],
"quotes": ["error", "double", { "avoidEscape": true }],
"camelcase": ["error", { "properties": "always" }],
"curly": ["error", "multi-or-nest"],
"comma-dangle": ["error", "never"],
"one-var": ["error", "consecutive"],
"linebreak-style": ["error", "unix"],
"prefer-const": "error",
"no-multi-spaces": "error",
"object-shorthand": "error",
"quote-props": ["error", "as-needed"],
"prefer-destructuring": ["error", { "array": false, "object": true }],
"prefer-template": "error",
"space-before-blocks": ["error", "always"],
"space-infix-ops": "error",
"func-call-spacing": ["error", "never"],
"key-spacing": ["error", { "beforeColon": false }],
"dot-notation": "error",
"no-case-declarations": "error",
"brace-style": "error",
"template-curly-spacing": "error",
"no-console": "warn",
"no-var": "error",
"@typescript-eslint/no-explicit-any": "error",
"no-eval": "warn",
"no-undefined": "error",
"no-eq-null": "error",
"@typescript-eslint/array-type": ["error", { "default": "array" }],
"no-lonely-if": "error",
"prettier/prettier": "error",
"arrow-body-style": "off",
"prefer-arrow-callback": "off",
"no-one-time-vars/no-one-time-vars": [
2,
{ "ignoredVariables": ["browsingTimestamp"] }
],
"radix": "off"
},
"overrides": [
{
"env": {
"node": true,
"mongo": true
},
"files": ["./*.ts"],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off",
"no-console": "off"
}
}
],
"reportUnusedDisableDirectives": true,
"noInlineConfig": false,
"plugins": ["@typescript-eslint", "prettier", "no-one-time-vars"]
}