3
3
exports [` eslintPlugin > should initialize ESLint plugin for Nx project 1` ] = `
4
4
{
5
5
" audits" : [
6
- {
7
- " description" : " ESLint rule **explicit-member-accessibility**, from _@typescript-eslint_ plugin." ,
8
- " docsUrl" : " https://typescript-eslint.io/rules/explicit-member-accessibility" ,
9
- " slug" : " typescript-eslint-explicit-member-accessibility" ,
10
- " title" : " Require explicit accessibility modifiers on class properties and methods" ,
11
- },
12
- {
13
- " description" : " ESLint rule **explicit-module-boundary-types**, from _@typescript-eslint_ plugin." ,
14
- " docsUrl" : " https://typescript-eslint.io/rules/explicit-module-boundary-types" ,
15
- " slug" : " typescript-eslint-explicit-module-boundary-types" ,
16
- " title" : " Require explicit return and argument types on exported functions' and classes' public class methods" ,
17
- },
18
- {
19
- " description" : " ESLint rule **explicit-function-return-type**, from _@typescript-eslint_ plugin." ,
20
- " docsUrl" : " https://typescript-eslint.io/rules/explicit-function-return-type" ,
21
- " slug" : " typescript-eslint-explicit-function-return-type" ,
22
- " title" : " Require explicit return types on functions and class methods" ,
23
- },
24
- {
25
- " description" : " ESLint rule **no-parameter-properties**, from _@typescript-eslint_ plugin." ,
26
- " docsUrl" : " https://typescript-eslint.io/rules/no-parameter-properties" ,
27
- " slug" : " typescript-eslint-no-parameter-properties" ,
28
- " title" : " Disallow the use of parameter properties in class constructors" ,
29
- },
30
6
{
31
7
" description" : " ESLint rule **adjacent-overload-signatures**, from _@typescript-eslint_ plugin." ,
32
8
" docsUrl" : " https://typescript-eslint.io/rules/adjacent-overload-signatures" ,
@@ -45,24 +21,12 @@ exports[`eslintPlugin > should initialize ESLint plugin for Nx project 1`] = `
45
21
" slug" : " typescript-eslint-ban-types" ,
46
22
" title" : " Disallow certain types" ,
47
23
},
48
- {
49
- " description" : " ESLint rule **no-array-constructor**." ,
50
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-array-constructor" ,
51
- " slug" : " no-array-constructor" ,
52
- " title" : " Disallow \` Array\` constructors" ,
53
- },
54
24
{
55
25
" description" : " ESLint rule **no-array-constructor**, from _@typescript-eslint_ plugin." ,
56
26
" docsUrl" : " https://typescript-eslint.io/rules/no-array-constructor" ,
57
27
" slug" : " typescript-eslint-no-array-constructor" ,
58
28
" title" : " Disallow generic \` Array\` constructors" ,
59
29
},
60
- {
61
- " description" : " ESLint rule **no-empty-function**." ,
62
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-empty-function" ,
63
- " slug" : " no-empty-function" ,
64
- " title" : " Disallow empty functions" ,
65
- },
66
30
{
67
31
" description" : " ESLint rule **no-empty-function**, from _@typescript-eslint_ plugin." ,
68
32
" docsUrl" : " https://typescript-eslint.io/rules/no-empty-function" ,
@@ -87,12 +51,6 @@ exports[`eslintPlugin > should initialize ESLint plugin for Nx project 1`] = `
87
51
" slug" : " typescript-eslint-no-extra-non-null-assertion" ,
88
52
" title" : " Disallow extra non-null assertions" ,
89
53
},
90
- {
91
- " description" : " ESLint rule **no-extra-semi**." ,
92
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-extra-semi" ,
93
- " slug" : " no-extra-semi" ,
94
- " title" : " Disallow unnecessary semicolons" ,
95
- },
96
54
{
97
55
" description" : " ESLint rule **no-extra-semi**, from _@typescript-eslint_ plugin." ,
98
56
" docsUrl" : " https://typescript-eslint.io/rules/no-extra-semi" ,
@@ -105,12 +63,6 @@ exports[`eslintPlugin > should initialize ESLint plugin for Nx project 1`] = `
105
63
" slug" : " typescript-eslint-no-inferrable-types" ,
106
64
" title" : " Disallow explicit type declarations for variables or parameters initialized to a number, string, or boolean" ,
107
65
},
108
- {
109
- " description" : " ESLint rule **no-loss-of-precision**." ,
110
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-loss-of-precision" ,
111
- " slug" : " no-loss-of-precision" ,
112
- " title" : " Disallow literal numbers that lose precision" ,
113
- },
114
66
{
115
67
" description" : " ESLint rule **no-loss-of-precision**, from _@typescript-eslint_ plugin." ,
116
68
" docsUrl" : " https://typescript-eslint.io/rules/no-loss-of-precision" ,
@@ -153,12 +105,6 @@ exports[`eslintPlugin > should initialize ESLint plugin for Nx project 1`] = `
153
105
" slug" : " typescript-eslint-no-unnecessary-type-constraint" ,
154
106
" title" : " Disallow unnecessary constraints on generic types" ,
155
107
},
156
- {
157
- " description" : " ESLint rule **no-unused-vars**." ,
158
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-unused-vars" ,
159
- " slug" : " no-unused-vars" ,
160
- " title" : " Disallow unused variables" ,
161
- },
162
108
{
163
109
" description" : " ESLint rule **no-unused-vars**, from _@typescript-eslint_ plugin." ,
164
110
" docsUrl" : " https://typescript-eslint.io/rules/no-unused-vars" ,
@@ -189,102 +135,6 @@ exports[`eslintPlugin > should initialize ESLint plugin for Nx project 1`] = `
189
135
" slug" : " typescript-eslint-triple-slash-reference" ,
190
136
" title" : " Disallow certain triple slash directives in favor of ES6-style import declarations" ,
191
137
},
192
- {
193
- " description" : " ESLint rule **constructor-super**." ,
194
- " docsUrl" : " https://eslint.org/docs/latest/rules/constructor-super" ,
195
- " slug" : " constructor-super" ,
196
- " title" : " Require \` super()\` calls in constructors" ,
197
- },
198
- {
199
- " description" : " ESLint rule **getter-return**." ,
200
- " docsUrl" : " https://eslint.org/docs/latest/rules/getter-return" ,
201
- " slug" : " getter-return" ,
202
- " title" : " Enforce \` return\` statements in getters" ,
203
- },
204
- {
205
- " description" : " ESLint rule **no-const-assign**." ,
206
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-const-assign" ,
207
- " slug" : " no-const-assign" ,
208
- " title" : " Disallow reassigning \` const\` variables" ,
209
- },
210
- {
211
- " description" : " ESLint rule **no-dupe-args**." ,
212
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-dupe-args" ,
213
- " slug" : " no-dupe-args" ,
214
- " title" : " Disallow duplicate arguments in \` function\` definitions" ,
215
- },
216
- {
217
- " description" : " ESLint rule **no-dupe-class-members**." ,
218
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-dupe-class-members" ,
219
- " slug" : " no-dupe-class-members" ,
220
- " title" : " Disallow duplicate class members" ,
221
- },
222
- {
223
- " description" : " ESLint rule **no-dupe-keys**." ,
224
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-dupe-keys" ,
225
- " slug" : " no-dupe-keys" ,
226
- " title" : " Disallow duplicate keys in object literals" ,
227
- },
228
- {
229
- " description" : " ESLint rule **no-func-assign**." ,
230
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-func-assign" ,
231
- " slug" : " no-func-assign" ,
232
- " title" : " Disallow reassigning \` function\` declarations" ,
233
- },
234
- {
235
- " description" : " ESLint rule **no-import-assign**." ,
236
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-import-assign" ,
237
- " slug" : " no-import-assign" ,
238
- " title" : " Disallow assigning to imported bindings" ,
239
- },
240
- {
241
- " description" : " ESLint rule **no-new-symbol**." ,
242
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-new-symbol" ,
243
- " slug" : " no-new-symbol" ,
244
- " title" : " Disallow \` new\` operators with the \` Symbol\` object" ,
245
- },
246
- {
247
- " description" : " ESLint rule **no-obj-calls**." ,
248
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-obj-calls" ,
249
- " slug" : " no-obj-calls" ,
250
- " title" : " Disallow calling global object properties as functions" ,
251
- },
252
- {
253
- " description" : " ESLint rule **no-redeclare**." ,
254
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-redeclare" ,
255
- " slug" : " no-redeclare" ,
256
- " title" : " Disallow variable redeclaration" ,
257
- },
258
- {
259
- " description" : " ESLint rule **no-setter-return**." ,
260
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-setter-return" ,
261
- " slug" : " no-setter-return" ,
262
- " title" : " Disallow returning values from setters" ,
263
- },
264
- {
265
- " description" : " ESLint rule **no-this-before-super**." ,
266
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-this-before-super" ,
267
- " slug" : " no-this-before-super" ,
268
- " title" : " Disallow \` this\` /\` super\` before calling \` super()\` in constructors" ,
269
- },
270
- {
271
- " description" : " ESLint rule **no-undef**." ,
272
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-undef" ,
273
- " slug" : " no-undef" ,
274
- " title" : " Disallow the use of undeclared variables unless mentioned in \` /*global */\` comments" ,
275
- },
276
- {
277
- " description" : " ESLint rule **no-unreachable**." ,
278
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-unreachable" ,
279
- " slug" : " no-unreachable" ,
280
- " title" : " Disallow unreachable code after \` return\` , \` throw\` , \` continue\` , and \` break\` statements" ,
281
- },
282
- {
283
- " description" : " ESLint rule **no-unsafe-negation**." ,
284
- " docsUrl" : " https://eslint.org/docs/latest/rules/no-unsafe-negation" ,
285
- " slug" : " no-unsafe-negation" ,
286
- " title" : " Disallow negating the left operand of relational operators" ,
287
- },
288
138
{
289
139
" description" : " ESLint rule **no-var**." ,
290
140
" docsUrl" : " https://eslint.org/docs/latest/rules/no-var" ,
@@ -309,12 +159,6 @@ exports[`eslintPlugin > should initialize ESLint plugin for Nx project 1`] = `
309
159
" slug" : " prefer-spread" ,
310
160
" title" : " Require spread operators instead of \` .apply()\` " ,
311
161
},
312
- {
313
- " description" : " ESLint rule **valid-typeof**." ,
314
- " docsUrl" : " https://eslint.org/docs/latest/rules/valid-typeof" ,
315
- " slug" : " valid-typeof" ,
316
- " title" : " Enforce comparing \` typeof\` expressions against valid strings" ,
317
- },
318
162
{
319
163
" description" : " ESLint rule **for-direction**." ,
320
164
" docsUrl" : " https://eslint.org/docs/latest/rules/for-direction" ,
@@ -889,12 +733,6 @@ exports[`eslintPlugin > should initialize ESLint plugin for React application 1`
889
733
" slug" : " react-no-unknown-property" ,
890
734
" title" : " Disallow usage of unknown DOM property" ,
891
735
},
892
- {
893
- " description" : " ESLint rule **no-unsafe**, from _react_ plugin." ,
894
- " docsUrl" : " https://github.com/jsx-eslint/eslint-plugin-react/tree/master/docs/rules/no-unsafe.md" ,
895
- " slug" : " react-no-unsafe" ,
896
- " title" : " Disallow usage of unsafe lifecycle methods" ,
897
- },
898
736
{
899
737
" description" : " ESLint rule **require-render-return**, from _react_ plugin." ,
900
738
" docsUrl" : " https://github.com/jsx-eslint/eslint-plugin-react/tree/master/docs/rules/require-render-return.md" ,
0 commit comments