-
Notifications
You must be signed in to change notification settings - Fork 151
/
.eslintrc
132 lines (132 loc) · 3.44 KB
/
.eslintrc
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"parserOptions": {
"ecmaVersion": 9,
"ecmaFeatures": {
"jsx": false
}
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"camelcase": 0, // Rule is bugged atm
"consistent-return": 0,
"curly": 1,
"default-case": 2,
"guard-for-in": 2,
"no-alert": 2,
"no-caller": 2,
"no-cond-assign": 2,
"no-constant-condition": 0,
"no-debugger": 2,
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-else-return": 2,
"no-empty": 2,
"no-empty-character-class": 2,
"no-eq-null": 2,
"no-ex-assign": 2,
"no-extend-native": 2,
"no-extra-boolean-cast": 2,
"no-extra-semi": 1,
"no-fallthrough": 2,
"no-func-assign": 2,
"no-invalid-regexp": 2,
"no-invalid-this": 2,
"no-irregular-whitespace": 1,
"no-lone-blocks": 2,
"no-loop-func": 2,
"no-multi-spaces": 1,
"no-new-wrappers": 2,
"no-new": 2,
"no-octal": 2,
"no-negated-in-lhs": 2,
"no-obj-calls": 2,
"no-redeclare": 2,
"no-regex-spaces": 2,
"no-return-assign": 2,
"no-self-compare": 2,
"no-shadow": "off",
"no-unreachable": 2,
"no-unexpected-multiline": 2,
"no-unused-expressions": 2,
"no-use-before-define": [1, "nofunc"],
"no-useless-escape": 0,
"no-var": 2,
"use-isnan": 2,
"valid-typeof": 2,
"array-bracket-spacing": [1, "never"],
"max-len": [1, 120, {
"ignoreComments": true
}],
"brace-style": [1, "stroustrup", { "allowSingleLine": true }],
"comma-spacing": [1, {"before": false, "after": true}],
"comma-style": [1, "last"],
"computed-property-spacing": [1, "never"],
"consistent-this": [1, "self"],
"eol-last": 1,
"new-cap": 0,
"new-parens": 1,
"no-mixed-spaces-and-tabs": 1,
"no-nested-ternary": 1,
"no-spaced-func": 1,
"no-trailing-spaces": 1,
"keyword-spacing": [1, {"before": true, "after": true}],
"space-before-blocks": [1, "always"],
"@typescript-eslint/ban-ts-ignore": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-shadow": ["error"],
"no-unused-vars": 0, // covered by @typescript-eslint/no-unused-vars
"strict": ["error", "never" ],
"eqeqeq": 2,
"prefer-const": 2,
"indent": ["error", 4, {
"FunctionDeclaration": {"parameters": "first"},
"FunctionExpression": {"parameters": "first"},
"SwitchCase": 1}
]
},
"overrides": [
{
"files": [
"spec/**/*.js"
],
"env": {
"node": true,
"es6": true,
"jasmine": true
},
"rules": {
"@typescript-eslint/no-this-alias": "off", // I'm unsure if we should disallow this.
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-var-requires": "off",
"strict": "off",
// temporary
"@typescript-eslint/no-unused-vars": "off",
"indent": "off",
"prefer-const": "off",
"no-var": "off",
}
},
{
"extends": ["plugin:jest/recommended"],
"files": [
"spec/e2e/*.spec.ts"
],
"rules": {
"jest/expect-expect": "off" // E2E tests don't always assert
}
}
],
"ignorePatterns": ["widget/**/*"]
}