You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/eslint-plugin/README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,6 @@ Pro Tip: For larger codebases you may want to consider splitting our linting int
126
126
|[`@typescript-eslint/no-floating-promises`](./docs/rules/no-floating-promises.md)| Requires Promise-like values to be handled appropriately |:heavy_check_mark:||:thought_balloon:|
127
127
|[`@typescript-eslint/no-for-in-array`](./docs/rules/no-for-in-array.md)| Disallow iterating over an array with a for-in loop |:heavy_check_mark:||:thought_balloon:|
128
128
|[`@typescript-eslint/no-implicit-any-catch`](./docs/rules/no-implicit-any-catch.md)| Disallow usage of the implicit `any` type in catch clauses ||:wrench:||
129
-
|[`@typescript-eslint/no-implied-eval`](./docs/rules/no-implied-eval.md)| Disallow the use of `eval()`-like methods |:heavy_check_mark:||:thought_balloon:|
130
129
|[`@typescript-eslint/no-inferrable-types`](./docs/rules/no-inferrable-types.md)| Disallows explicit type declarations for variables or parameters initialized to a number, string, or boolean |:heavy_check_mark:|:wrench:||
131
130
|[`@typescript-eslint/no-invalid-void-type`](./docs/rules/no-invalid-void-type.md)| Disallows usage of `void` type outside of generic or return types ||||
132
131
|[`@typescript-eslint/no-misused-new`](./docs/rules/no-misused-new.md)| Enforce valid definition of `new` and `constructor`|:heavy_check_mark:|||
@@ -137,7 +136,6 @@ Pro Tip: For larger codebases you may want to consider splitting our linting int
137
136
|[`@typescript-eslint/no-parameter-properties`](./docs/rules/no-parameter-properties.md)| Disallow the use of parameter properties in class constructors ||||
138
137
|[`@typescript-eslint/no-require-imports`](./docs/rules/no-require-imports.md)| Disallows invocation of `require()`||||
|[`@typescript-eslint/no-throw-literal`](./docs/rules/no-throw-literal.md)| Disallow throwing literals as exceptions |||:thought_balloon:|
141
139
|[`@typescript-eslint/no-type-alias`](./docs/rules/no-type-alias.md)| Disallow the use of type aliases ||||
142
140
|[`@typescript-eslint/no-unnecessary-boolean-literal-compare`](./docs/rules/no-unnecessary-boolean-literal-compare.md)| Flags unnecessary equality comparisons against boolean literals ||:wrench:|:thought_balloon:|
143
141
|[`@typescript-eslint/no-unnecessary-condition`](./docs/rules/no-unnecessary-condition.md)| Prevents conditionals where the type is always truthy or always falsy ||:wrench:|:thought_balloon:|
@@ -206,12 +204,14 @@ In these cases, we create what we call an extension rule; a rule within our plug
|[`@typescript-eslint/no-invalid-this`](./docs/rules/no-invalid-this.md)| disallow `this` keywords outside of classes or class-like objects ||||
207
+
|[`@typescript-eslint/no-implied-eval`](./docs/rules/no-implied-eval.md)| Disallow the use of `eval()`-like methods |:heavy_check_mark:||:thought_balloon:|
208
+
|[`@typescript-eslint/no-invalid-this`](./docs/rules/no-invalid-this.md)| Disallow `this` keywords outside of classes or class-like objects ||||
210
209
|[`@typescript-eslint/no-loop-func`](./docs/rules/no-loop-func.md)| Disallow function declarations that contain unsafe references inside loop statements ||||
211
210
|[`@typescript-eslint/no-loss-of-precision`](./docs/rules/no-loss-of-precision.md)| Disallow literal numbers that lose precision ||||
0 commit comments