@typescript-eslint/eslint-plugin 7.14.0 → 7.14.1-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -34,7 +34,7 @@ import RulesTable from "@site/src/components/RulesTable";
34
34
  - `💭 requires type information` refers to whether the rule requires [typed linting](/getting-started/typed-linting).
35
35
  - `🧱 extension rule` means that the rule is an extension of an [core ESLint rule](https://eslint.org/docs/latest/rules) (see [Extension Rules](#extension-rules)).
36
36
  - `📐 formatting rule` means that the rule has to do with formatting.
37
- - We [strongly recommend against using ESLint for formatting](/users/what-about-formatting).
37
+ - We [strongly recommend against using ESLint for formatting](/troubleshooting/formatting).
38
38
  - Soon, formatting rules will be moved to the [ESLint stylistic plugin](https://eslint.style).
39
39
  - `💀 deprecated rule` means that the rule should no longer be used and will be removed from the plugin in a future version.
40
40
 
@@ -12,4 +12,4 @@ import TabItem from '@theme/TabItem';
12
12
  This rule extends the base [`eslint/no-extra-semi`](https://eslint.org/docs/rules/no-extra-semi) rule.
13
13
  It adds support for class properties.
14
14
 
15
- Note that this rule is classified as a "Suggestion" rule instead of a "Layout & Formatting" rule because [adding extra semi-colons actually changes the AST of the program](https://typescript-eslint.io/play/#ts=5.1.6&showAST=es&fileType=.ts&code=MYewdgzgLgBAHjAvDAjAbg0A&eslintrc=N4KABGBEBOCuA2BTAzpAXGUEKQHYHsBaRADwBdoBDQ5RAWwEt0p8AzVyAGnG0gAEyATwAOKAMbQGwssWTwGuMgHoCxclRr0mGSImjR80SDwC%2BIE0A&tsconfig=&tokens=false). With that said, modern TypeScript formatters will remove extra semi-colons automatically during the formatting process. Thus, if you [use a formatter](/users/what-about-formatting), then enabling this rule is probably unnecessary.
15
+ Note that this rule is classified as a "Suggestion" rule instead of a "Layout & Formatting" rule because [adding extra semi-colons actually changes the AST of the program](https://typescript-eslint.io/play/#ts=5.1.6&showAST=es&fileType=.ts&code=MYewdgzgLgBAHjAvDAjAbg0A&eslintrc=N4KABGBEBOCuA2BTAzpAXGUEKQHYHsBaRADwBdoBDQ5RAWwEt0p8AzVyAGnG0gAEyATwAOKAMbQGwssWTwGuMgHoCxclRr0mGSImjR80SDwC%2BIE0A&tsconfig=&tokens=false). With that said, modern TypeScript formatters will remove extra semi-colons automatically during the formatting process. Thus, if you [use a formatter](/troubleshooting/formatting), then enabling this rule is probably unnecessary.
@@ -19,7 +19,7 @@ TypeScript type aliases are a commonly necessary language feature; banning it al
19
19
  :::note
20
20
 
21
21
  If you want to ban certain classifications of type aliases, consider using [`no-restricted-syntax`](https://eslint.org/docs/latest/rules/no-restricted-syntax).
22
- See [Troubleshooting & FAQs](/troubleshooting/faqs/general#how-can-i-ban-specific-language-feature).
22
+ See [Troubleshooting & FAQs](/troubleshooting#how-can-i-ban-specific-language-feature).
23
23
 
24
24
  :::
25
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typescript-eslint/eslint-plugin",
3
- "version": "7.14.0",
3
+ "version": "7.14.1-alpha.0",
4
4
  "description": "TypeScript plugin for ESLint",
5
5
  "files": [
6
6
  "dist",
@@ -60,10 +60,10 @@
60
60
  },
61
61
  "dependencies": {
62
62
  "@eslint-community/regexpp": "^4.10.0",
63
- "@typescript-eslint/scope-manager": "7.14.0",
64
- "@typescript-eslint/type-utils": "7.14.0",
65
- "@typescript-eslint/utils": "7.14.0",
66
- "@typescript-eslint/visitor-keys": "7.14.0",
63
+ "@typescript-eslint/scope-manager": "7.14.1-alpha.0",
64
+ "@typescript-eslint/type-utils": "7.14.1-alpha.0",
65
+ "@typescript-eslint/utils": "7.14.1-alpha.0",
66
+ "@typescript-eslint/visitor-keys": "7.14.1-alpha.0",
67
67
  "graphemer": "^1.4.0",
68
68
  "ignore": "^5.3.1",
69
69
  "natural-compare": "^1.4.0",
@@ -74,8 +74,8 @@
74
74
  "@types/marked": "^5.0.2",
75
75
  "@types/mdast": "^4.0.3",
76
76
  "@types/natural-compare": "*",
77
- "@typescript-eslint/rule-schema-to-typescript-types": "7.14.0",
78
- "@typescript-eslint/rule-tester": "7.14.0",
77
+ "@typescript-eslint/rule-schema-to-typescript-types": "7.14.1-alpha.0",
78
+ "@typescript-eslint/rule-tester": "7.14.1-alpha.0",
79
79
  "ajv": "^6.12.6",
80
80
  "cross-env": "^7.0.3",
81
81
  "cross-fetch": "*",