-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
273 lines (238 loc) · 7.81 KB
/
.eslintrc.js
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/**
* Common jsdoc formatting rules
*/
const JSDOC_RULES = {
require: {
ArrowFunctionExpression: false,
ClassDeclaration: true,
ClassExpression: true,
FunctionDeclaration: true,
FunctionExpression: true,
MethodDefinition: true,
},
contexts: [
{
context: 'TSPropertySignature',
inlineCommentBlock: true,
},
'TSEnumDeclaration',
'TSTypeAliasDeclaration',
'FunctionDeclaration',
'ClassDeclaration',
],
};
module.exports = {
globals: {
// Allow for self to be a mirror of window
self: true,
},
parser: '@typescript-eslint/parser',
extends: [
'airbnb-base',
'plugin:@typescript-eslint/recommended',
'plugin:jsdoc/recommended',
'plugin:eslint-comments/recommended',
],
env: {
browser: true,
node: true,
jest: true,
es6: true,
mocha: true,
},
plugins: ['import', '@typescript-eslint', 'jsdoc'],
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
rules: {
// //////// //
// Disabled //
// //////// //
/** Handled by prettier */
'comma-dangle': 0,
'operator-linebreak': 0,
'implicit-arrow-linebreak': 0,
'@typescript-eslint/indent': 0,
'object-curly-newline': 0,
'template-curly-spacing': 0,
'newline-per-chained-call': 0,
'generator-star-spacing': 0,
'computed-property-spacing': 0,
'space-before-function-paren': 0,
indent: 0,
'function-paren-newline': 0,
'no-confusing-arrow': 0,
'no-multi-spaces': 0,
'object-property-newline': 0,
'brace-style': 0,
/** handled by no-restricted-syntax */
'guard-for-in': 0,
/** Ignored for testing */
'no-await-in-loop': 0,
/**
* We prefer to use types instead of interfaces
*
* @see https://www.notion.so/transcend/Use-Type-instead-of-Interface-b3868d0885724b6894647018323a57b2
*/
'@typescript-eslint/prefer-interface': 0,
'@typescript-eslint/interface-name-prefix': 0,
// when we do use interfaces, they are often empty
'@typescript-eslint/no-empty-interface': 0,
/** Use import lint rules */
'@typescript-eslint/no-var-requires': 0,
/**
* Sometimes its just fun to nest ternary....
*
* With prettier its not so bad. its best to avoid
* super deeply nest ternary statements but doing and if else if else is not bad
*/
'no-nested-ternary': 0,
/**
* We use a custom pre-commit for import orders
*
* @see pre_commit_hooks/ordered_imports.js
*/
'import/order': 0,
/** no types are required cuz we use typescript */
'jsdoc/require-param-type': 0,
'jsdoc/require-returns-type': 0,
/**
* TS allows for public syntax in constructor to make a constructor
* parameter assigned to the class instance. We use this often and so
* the constructor is often empty
*/
'no-useless-constructor': 0,
/** Import rules we don't use */
'import/no-named-as-default': 0,
'import/extensions': 0,
'import/prefer-default-export': 0,
/** We use @typescript-eslint */
'no-use-before-define': 0,
'no-shadow': 0,
camelcase: 0,
'no-var-requires': 0,
'no-inferrable-types': 0,
// ///// //
// Rules //
// ///// //
/** Enforce === instead of == */
eqeqeq: ['error'],
/**
* Require class methods to call this. If you want a class
* method to not use this, you can workaround the rule by using
* arrow function syntax, i.e.
*
* `public myParam = () => []`
*/
'class-methods-use-this': ['error'],
/**
* Type signatures should be combined if possible:
*
* @see https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/unified-signatures.md
*/
'@typescript-eslint/unified-signatures': ['error'],
/**
* Group overrides next to each other
*
* @see https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/adjacent-overload-signatures.md
*/
'@typescript-eslint/adjacent-overload-signatures': ['error'],
/**
* Explicitly specify return types to functions. This improves type safety
* and also allows compiler to optimize
*
* @see https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/explicit-function-return-type.md
* @see https://www.notion.so/transcend/4ef10ad243b746d9b2a84f8bb4a1b01a?v=8eb2ce8c21d54b43a916e7f93a563950&p=36b3bd33e054443084d2759537e6423b
*/
'@typescript-eslint/explicit-function-return-type': [
'error',
{ allowExpressions: true },
],
'@typescript-eslint/explicit-module-boundary-types': 0,
/** JSdoc Validation */
'jsdoc/require-jsdoc': ['error', JSDOC_RULES],
'jsdoc/check-types': ['error'],
'jsdoc/check-param-names': ['error', { checkDestructured: false }],
'jsdoc/require-returns': ['error'],
'jsdoc/no-types': ['error'],
'jsdoc/require-param': ['error', { checkDestructured: false }],
'jsdoc/require-param-description': ['error'],
'jsdoc/require-returns-description': ['error'],
'jsdoc/require-hyphen-before-param-description': ['error'],
'jsdoc/require-description': [
'error',
{
contexts: JSDOC_RULES.contexts.map(
(context) => context.context || context,
),
},
],
/** Import validation */
'import/imports-first': ['error'],
'import/newline-after-import': ['error'],
'import/no-dynamic-require': ['error'],
'import/no-unresolved': ['error'],
'import/no-webpack-loader-syntax': ['error'],
/**
* Console log statements are normally used in debugging.
* Instead we should use event manager on backend, or create and
* use a singleton logger instance in each class.
*
* As a workaround you can set `const logger = console` and run `logger.log()`
*/
'no-console': ['error'],
/** Use template strings for concatenation */
'prefer-template': ['error'],
/**
* Limits on file size to make them digestible and
*
* Limit line length to make code accessible on smaller screens.
*/
'max-len': ['error', 125, { comments: 150 }],
/** Require curly brackets around newlines */
curly: ['error'],
/** Ensure eslint-disable is not present when its not disabling any rule */
'eslint-comments/no-unused-disable': ['error'],
/** Arrow functions should have parentheses around inputs */
'arrow-parens': ['error', 'always'],
'arrow-body-style': ['error', 'as-needed'],
/** Max lines in a file */
'max-lines': ['error', 350],
/** Generator functions should call `yield` */
'require-yield': ['error'],
/** Prefer for-of to for loop (in general we prefer map/forEach over for of as well) */
'@typescript-eslint/prefer-for-of': ['error'],
/** Should not alias this to another command */
'@typescript-eslint/no-this-alias': ['error'],
/** Prevent use of global variables */
'no-restricted-globals': ['error'],
/** No unnecessary async statements on a function */
'require-await': ['error'],
// TODO: https://github.com/benmosher/eslint-plugin-import/pull/1696 - Remove overrides,
// PR is merging soon -- 9/2/2020
'import/no-extraneous-dependencies': 0,
// No unused imports or variables. Convenient for pre-commit hook.
'@typescript-eslint/no-unused-vars': ['error'],
/** We want to eventually turn this to an error */
'@typescript-eslint/ban-types': ['error'],
'@typescript-eslint/no-explicit-any': ['error'],
},
overrides: [
{
files: ['**/*.js'],
rules: {
'@typescript-eslint/explicit-function-return-type': 0,
},
},
],
settings: {
/** Allow for typescript alias resolution */
'import/resolver': {
typescript: {},
},
},
};