Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat(eslint-plugin): remove formatting/layout rules#8833

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
14 commits
Select commitHold shift + click to select a range
5702dc2
feat(eslint-plugin): remove formatting/layout rules
JoshuaKGoldbergApr 4, 2024
559ec8d
Remove "layout"
JoshuaKGoldbergApr 8, 2024
5542aeb
feat(typescript-estree): add defaultProject for project service (#8815)
JoshuaKGoldbergApr 15, 2024
fda5704
feat(eslint-plugin): replace `no-new-symbol` with `no-new-native-nonc…
reducktedApr 15, 2024
fd06a27
Add tombstones
JoshuaKGoldbergApr 15, 2024
0614d7c
Merge branch 'main'
JoshuaKGoldbergApr 15, 2024
5648157
Merge branch 'v8' into remove-formatting-rules
JoshuaKGoldbergApr 15, 2024
9b506c4
Merge branch 'main' into v8
JoshuaKGoldbergApr 15, 2024
da3c244
Merge branch 'v8' into remove-formatting-rules
JoshuaKGoldbergApr 15, 2024
872c5db
'deprecated' typo
JoshuaKGoldbergApr 15, 2024
e9f07a2
Let's mention both issues
JoshuaKGoldbergApr 15, 2024
2dd6434
Merge branch 'v8'
JoshuaKGoldbergApr 15, 2024
637367e
Fix unused variable issue
JoshuaKGoldbergApr 15, 2024
94a530d
Merge branch 'v8'
JoshuaKGoldbergApr 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletiondocs/packages/TypeScript_ESTree.mdx
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -274,9 +274,14 @@ interface ParseAndGenerateServicesOptions extends ParseOptions {
*/
interface ProjectServiceOptions {
/**
* Globs of files to allow running with the defaultinferredprojectsettings.
* Globs of files to allow running with the default projectcompiler options.
*/
allowDefaultProjectForFiles?: string[];

/**
* Path to a TSConfig to use instead of TypeScript's default project configuration.
*/
defaultProject?: string;
}

interface ParserServices {
Expand Down
3 changes: 0 additions & 3 deletionspackages/eslint-plugin/docs/rules/README.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,9 +33,6 @@ import RulesTable from "@site/src/components/RulesTable";
- Sometimes, it is not safe to automatically fix the code with an auto-fixer. But in these cases, we often have a good guess of what the correct fix should be, and we can provide it as a suggestion to the developer.
- `💭 requires type information` refers to whether the rule requires [typed linting](/getting-started/typed-linting).
- `🧱 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)).
- `📐 formatting rule` means that the rule has to do with formatting.
- We [strongly recommend against using ESLint for formatting](/troubleshooting/formatting).
- Soon, formatting rules will be moved to the [ESLint stylistic plugin](https://eslint.style).
- `💀 deprecated rule` means that the rule should no longer be used and will be removed from the plugin in a future version.

## Extension Rules
Expand Down
11 changes: 11 additions & 0 deletionspackages/eslint-plugin/docs/rules/block-spacing.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
:::danger Deprecated

This rule has been moved to the [ESLint stylistic plugin](https://eslint.style).
See [#8072](https://github.com/typescript-eslint/typescript-eslint/issues/8072) and [#8074](https://github.com/typescript-eslint/typescript-eslint/issues/8074) for more information.

:::

<!-- This doc file has been left on purpose to help direct people to the stylistic plugin.

Note that there is no actual way to get to this page in the normal navigation,
so end-users will only be able to get to this page from the search bar. -->
13 changes: 0 additions & 13 deletionspackages/eslint-plugin/docs/rules/block-spacing.mdx
View file
Open in desktop

This file was deleted.

11 changes: 11 additions & 0 deletionspackages/eslint-plugin/docs/rules/brace-style.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
:::danger Deprecated

This rule has been moved to the [ESLint stylistic plugin](https://eslint.style).
See [#8072](https://github.com/typescript-eslint/typescript-eslint/issues/8072) and [#8074](https://github.com/typescript-eslint/typescript-eslint/issues/8074) for more information.

:::

<!-- This doc file has been left on purpose to help direct people to the stylistic plugin.

Note that there is no actual way to get to this page in the normal navigation,
so end-users will only be able to get to this page from the search bar. -->
13 changes: 0 additions & 13 deletionspackages/eslint-plugin/docs/rules/brace-style.mdx
View file
Open in desktop

This file was deleted.

11 changes: 11 additions & 0 deletionspackages/eslint-plugin/docs/rules/comma-dangle.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
:::danger Deprecated

This rule has been moved to the [ESLint stylistic plugin](https://eslint.style).
See [#8072](https://github.com/typescript-eslint/typescript-eslint/issues/8072) and [#8074](https://github.com/typescript-eslint/typescript-eslint/issues/8074) for more information.

:::

<!-- This doc file has been left on purpose to help direct people to the stylistic plugin.

Note that there is no actual way to get to this page in the normal navigation,
so end-users will only be able to get to this page from the search bar. -->
23 changes: 0 additions & 23 deletionspackages/eslint-plugin/docs/rules/comma-dangle.mdx
View file
Open in desktop

This file was deleted.

11 changes: 11 additions & 0 deletionspackages/eslint-plugin/docs/rules/comma-spacing.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
:::danger Deprecated

This rule has been moved to the [ESLint stylistic plugin](https://eslint.style).
See [#8072](https://github.com/typescript-eslint/typescript-eslint/issues/8072) and [#8074](https://github.com/typescript-eslint/typescript-eslint/issues/8074) for more information.

:::

<!-- This doc file has been left on purpose to help direct people to the stylistic plugin.

Note that there is no actual way to get to this page in the normal navigation,
so end-users will only be able to get to this page from the search bar. -->
13 changes: 0 additions & 13 deletionspackages/eslint-plugin/docs/rules/comma-spacing.mdx
View file
Open in desktop

This file was deleted.

11 changes: 11 additions & 0 deletionspackages/eslint-plugin/docs/rules/func-call-spacing.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
:::danger Deprecated

This rule has been moved to the [ESLint stylistic plugin](https://eslint.style).
See [#8072](https://github.com/typescript-eslint/typescript-eslint/issues/8072) and [#8074](https://github.com/typescript-eslint/typescript-eslint/issues/8074) for more information.

:::

<!-- This doc file has been left on purpose to help direct people to the stylistic plugin.

Note that there is no actual way to get to this page in the normal navigation,
so end-users will only be able to get to this page from the search bar. -->
13 changes: 0 additions & 13 deletionspackages/eslint-plugin/docs/rules/func-call-spacing.mdx
View file
Open in desktop

This file was deleted.

11 changes: 11 additions & 0 deletionspackages/eslint-plugin/docs/rules/indent.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
:::danger Deprecated

This rule has been moved to the [ESLint stylistic plugin](https://eslint.style).
See [#8072](https://github.com/typescript-eslint/typescript-eslint/issues/8072) and [#8074](https://github.com/typescript-eslint/typescript-eslint/issues/8074) for more information.

:::

<!-- This doc file has been left on purpose to help direct people to the stylistic plugin.

Note that there is no actual way to get to this page in the normal navigation,
so end-users will only be able to get to this page from the search bar. -->
21 changes: 0 additions & 21 deletionspackages/eslint-plugin/docs/rules/indent.mdx
View file
Open in desktop

This file was deleted.

11 changes: 11 additions & 0 deletionspackages/eslint-plugin/docs/rules/key-spacing.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
:::danger Deprecated

This rule has been moved to the [ESLint stylistic plugin](https://eslint.style).
See [#8072](https://github.com/typescript-eslint/typescript-eslint/issues/8072) and [#8074](https://github.com/typescript-eslint/typescript-eslint/issues/8074) for more information.

:::

<!-- This doc file has been left on purpose to help direct people to the stylistic plugin.

Note that there is no actual way to get to this page in the normal navigation,
so end-users will only be able to get to this page from the search bar. -->
13 changes: 0 additions & 13 deletionspackages/eslint-plugin/docs/rules/key-spacing.mdx
View file
Open in desktop

This file was deleted.

11 changes: 11 additions & 0 deletionspackages/eslint-plugin/docs/rules/keyword-spacing.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
:::danger Deprecated

This rule has been moved to the [ESLint stylistic plugin](https://eslint.style).
See [#8072](https://github.com/typescript-eslint/typescript-eslint/issues/8072) and [#8074](https://github.com/typescript-eslint/typescript-eslint/issues/8074) for more information.

:::

<!-- This doc file has been left on purpose to help direct people to the stylistic plugin.

Note that there is no actual way to get to this page in the normal navigation,
so end-users will only be able to get to this page from the search bar. -->
13 changes: 0 additions & 13 deletionspackages/eslint-plugin/docs/rules/keyword-spacing.mdx
View file
Open in desktop

This file was deleted.

11 changes: 11 additions & 0 deletionspackages/eslint-plugin/docs/rules/lines-around-comment.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
:::danger Deprecated

This rule has been moved to the [ESLint stylistic plugin](https://eslint.style).
See [#8072](https://github.com/typescript-eslint/typescript-eslint/issues/8072) and [#8074](https://github.com/typescript-eslint/typescript-eslint/issues/8074) for more information.

:::

<!-- This doc file has been left on purpose to help direct people to the stylistic plugin.

Note that there is no actual way to get to this page in the normal navigation,
so end-users will only be able to get to this page from the search bar. -->
28 changes: 0 additions & 28 deletionspackages/eslint-plugin/docs/rules/lines-around-comment.mdx
View file
Open in desktop

This file was deleted.

View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
:::danger Deprecated

This rule has been moved to the [ESLint stylistic plugin](https://eslint.style).
See [#8072](https://github.com/typescript-eslint/typescript-eslint/issues/8072) and [#8074](https://github.com/typescript-eslint/typescript-eslint/issues/8074) for more information.

:::

<!-- This doc file has been left on purpose to help direct people to the stylistic plugin.

Note that there is no actual way to get to this page in the normal navigation,
so end-users will only be able to get to this page from the search bar. -->
View file
Open in desktop

This file was deleted.

11 changes: 11 additions & 0 deletionspackages/eslint-plugin/docs/rules/member-delimiter-style.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
:::danger Deprecated

This rule has been moved to the [ESLint stylistic plugin](https://eslint.style).
See [#8072](https://github.com/typescript-eslint/typescript-eslint/issues/8072) and [#8074](https://github.com/typescript-eslint/typescript-eslint/issues/8074) for more information.

:::

<!-- This doc file has been left on purpose to help direct people to the stylistic plugin.

Note that there is no actual way to get to this page in the normal navigation,
so end-users will only be able to get to this page from the search bar. -->
Loading
Loading

[8]ページ先頭

©2009-2025 Movatter.jp