-
Notifications
You must be signed in to change notification settings - Fork 33
/
.eslintrc.js
258 lines (251 loc) · 9.13 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
// Copyright 2017 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module.exports = {
'root': true,
'env': {
'browser': true,
// This allows the runtime environment (i.e. objects).
'es6': true,
},
'parserOptions': {
// This sets the syntax parsing level.
'ecmaVersion': 2020,
'sourceType': 'module',
},
'plugins': [
'html',
'jsdoc',
],
// See https://eslint.org/docs/rules/ for details.
// These rules were picked based on the existing codebase. If you find one
// to be too onerous and not required by the styleguide, feel free to discuss.
'rules': {
'array-bracket-spacing': 'error',
'arrow-parens': ['error', 'always'],
'arrow-spacing': ['error', {'before': true, 'after': true}],
'block-spacing': ['error', 'always'],
'brace-style': ['error', '1tbs', {'allowSingleLine': true}],
'comma-dangle': ['error', 'always-multiline'],
'comma-spacing': 'error',
'comma-style': 'error',
// We want this on, but the parser is confused by IIFE calls.
'consistent-return': 'off',
'consistent-this': ['error', 'self'],
'curly': 'error',
'default-param-last': 'error',
'eol-last': 'error',
'func-call-spacing': 'error',
'generator-star-spacing': ['error', 'after'],
// l/I: Depending on the font, these are hard to distinguish.
'id-denylist': ['error', 'l', 'I'],
'implicit-arrow-linebreak': 'error',
'keyword-spacing': 'error',
// We normally want this, but we allow it in a few limited cases, so leave
// it up to reviewers to decide for now.
'line-comment-position': 'off',
'linebreak-style': 'error',
'lines-between-class-members': 'error',
'max-len': ['error', {'code': 80, 'ignoreUrls': true}],
// We generally like this, but it flags one-lined arrow funcs that we allow.
'max-statements-per-line': 'off',
// We want this, but we have existing classes to clean up first.
'new-cap': 'off',
'new-parens': 'error',
'no-alert': 'error',
'no-case-declarations': 'error',
'no-cond-assign': 'error',
'no-const-assign': 'error',
'no-control-regex': 'error',
'no-debugger': 'error',
'no-dupe-args': 'error',
'no-dupe-class-members': 'error',
'no-dupe-keys': 'error',
'no-duplicate-case': 'error',
'no-empty': 'error',
'no-empty-character-class': 'error',
'no-eval': 'error',
'no-ex-assign': 'error',
// We want 'all' (nestedBinaryExpressions=false), but this breaks
// closure-compiler casts.
'no-extra-parens': ['error', 'functions'],
'no-extra-semi': 'error',
'no-implied-eval': 'error',
// See line-comment-position above.
'no-inline-comments': 'off',
'no-invalid-regexp': 'error',
// We want this, but the parser is confused by mocha test style.
'no-invalid-this': 'off',
'no-irregular-whitespace': 'error',
'no-label-var': 'error',
'no-mixed-operators': 'off',
'no-mixed-spaces-and-tabs': 'error',
'no-multi-assign': 'off',
'no-multi-spaces': ['error', {'ignoreEOLComments': true}],
'no-multiple-empty-lines': 'error',
'no-new': 'error',
'no-new-func': 'error',
'no-new-object': 'error',
'no-new-wrappers': 'error',
'no-obj-calls': 'error',
'no-octal': 'error',
'no-octal-escape': 'error',
// We should turn this on at some point after cleaning up violations.
'no-return-assign': 'off',
'no-return-await': 'error',
'no-script-url': 'error',
'no-self-assign': 'error',
'no-self-compare': 'error',
'no-sequences': 'error',
'no-shadow-restricted-names': 'error',
'no-tabs': 'error',
'no-template-curly-in-string': 'error',
'no-throw-literal': 'error',
'no-trailing-spaces': 'error',
'no-unexpected-multiline': 'error',
'no-unmodified-loop-condition': 'error',
'no-unneeded-ternary': 'error',
'no-unreachable': 'error',
// Does not play well with closure typedefs.
'no-unused-expressions': 'off',
// Would be nice to turn this on.
'no-unused-vars': [
'off', {
'argsIgnorePattern': '^_',
'caughtErrorsIgnorePattern': '^_',
},
],
// Probably should turn this on.
'no-use-before-define': 'off',
'no-useless-call': 'error',
'no-useless-concat': 'error',
'no-useless-escape': 'error',
'no-useless-return': 'error',
'no-var': 'error',
'no-void': 'error',
// We allow TODO comments.
'no-warning-comments': [
'error', {
'terms': ['fix', 'fixme', 'xxx'],
},
],
'no-whitespace-before-property': 'error',
'no-with': 'error',
'object-curly-newline': ['error', {'consistent': true}],
'object-curly-spacing': 'error',
'one-var-declaration-per-line': 'error',
'prefer-const': 'error',
'prefer-numeric-literals': 'error',
// Should turn this on after cleaning up code.
'prefer-object-spread': 'off',
'prefer-rest-params': 'error',
// Should turn this on after cleaning up code.
'prefer-spread': 'off',
'quote-props': ['error', 'consistent'],
'quotes': ['error', 'single',
{'avoidEscape': true, 'allowTemplateLiterals': true}],
'radix': 'error',
'require-await': 'off',
'rest-spread-spacing': 'error',
'semi': ['error', 'always'],
'semi-spacing': 'error',
'semi-style': ['error', 'last'],
'space-before-blocks': ['error', 'always'],
'space-before-function-paren': [
'error', {
'anonymous': 'never',
'named': 'never',
'asyncArrow': 'always',
},
],
'space-in-parens': ['error', 'never'],
'space-infix-ops': 'error',
'space-unary-ops': 'error',
'spaced-comment': ['error', 'always'],
'switch-colon-spacing': ['error', {'after': true, 'before': false}],
'symbol-description': 'error',
'template-curly-spacing': ['error', 'never'],
'unicode-bom': ['error', 'never'],
'use-isnan': 'error',
'valid-typeof': 'error',
'yield-star-spacing': ['error', 'after'],
'yoda': 'error',
'jsdoc/check-access': 'error',
'jsdoc/check-alignment': 'error',
// Disabled pending https://github.com/eslint/eslint/issues/14745 although
// we don't use @example anywhere in the tree currently.
// 'jsdoc/check-examples': 'error',
// We want hanging indentation, but this check requires none everywhere.
'jsdoc/check-indentation': 'off',
'jsdoc/check-param-names': 'error',
'jsdoc/check-property-names': 'error',
// Make sure this is disabled as this rejects closure syntax.
'jsdoc/check-syntax': 'off',
'jsdoc/check-tag-names': 'error',
// This is disabled until this crash is resolved:
// https://github.com/gajus/eslint-plugin-jsdoc/issues/389
'jsdoc/check-types': 'off',
// We don't use these tags in the project.
'jsdoc/check-values': 'off',
'jsdoc/empty-tags': 'error',
'jsdoc/implements-on-classes': 'error',
// Can't turn on until require-description is enabled.
'jsdoc/match-description': 'off',
// This is only for TypeScript which we don't care about.
'jsdoc/no-types': 'off',
// This would be nice to turn on, but requires a lot more research.
// See valid-types setting below too.
'jsdoc/no-undefined-types': 'off',
// TODO(vapier): Turn this on.
'jsdoc/require-description': 'off',
// TODO(vapier): Turn this on.
'jsdoc/require-description-complete-sentence': 'off',
// We don't want to require examples.
'jsdoc/require-example': 'off',
// TODO(vapier): Turn this on.
'jsdoc/require-file-overview': 'off',
'jsdoc/require-hyphen-before-param-description': ['error', 'never'],
// TODO(vapier): Turn this on.
'jsdoc/require-jsdoc': 'off',
'jsdoc/require-param': 'error',
// TODO(vapier): Turn this on.
'jsdoc/require-param-description': 'off',
'jsdoc/require-param-name': 'error',
'jsdoc/require-param-type': 'error',
'jsdoc/require-returns': 'error',
'jsdoc/require-returns-check': 'error',
// TODO(vapier): Turn this on.
'jsdoc/require-returns-description': 'off',
'jsdoc/require-returns-type': 'error',
// This would be nice to turn on, but requires a lot more research.
'jsdoc/valid-types': 'off',
},
'settings': {
// https://github.com/BenoitZugmeyer/eslint-plugin-html#settings
'html': {
// TODO(vapier): Would like to use .html.in, but doesn't work right.
// https://github.com/BenoitZugmeyer/eslint-plugin-html/issues/127
'html-extensions': ['.html', '.in'],
},
// https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc
'jsdoc': {
'mode': 'closure',
'preferredTypes': {
'object': 'Object',
},
'tagNamePreference': {
// While not explicitly defined, Google/Chromium JS style guides only
// use these keyword forms, as does the closure compiler docs.
'augments': 'extends',
'constant': 'const',
'class': 'constructor',
'file': 'fileoverview',
'returns': 'return',
'yields': 'yield',
// Stub out closure-specific tags so they get ignored.
// TODO(vapier): Delete this after upgrade to newer jsdoc.
'closurePrimitive': '',
},
},
},
};