Skip to content

Commit

Permalink
fix: remove outdated vscode-eslint eslint.useFlatConfig setting (#1695)
Browse files Browse the repository at this point in the history
## PR Checklist

- [x] Addresses an existing open issue: fixes #1692
- [x] That issue was marked as [`status: accepting
prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22)
- [x] Steps in
[CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md)
were taken

## Overview

💖
  • Loading branch information
JoshuaKGoldberg authored Nov 25, 2024
1 parent 3bd0f36 commit 531142d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@
"yaml"
],
"eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
"eslint.useFlatConfig": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
4 changes: 0 additions & 4 deletions src/steps/writing/creation/dotVSCode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ describe("createDotVSCode", () => {
"yaml"
],
"eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
"eslint.useFlatConfig": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
",
Expand Down Expand Up @@ -149,7 +148,6 @@ describe("createDotVSCode", () => {
"yaml"
],
"eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
"eslint.useFlatConfig": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
",
Expand Down Expand Up @@ -216,7 +214,6 @@ describe("createDotVSCode", () => {
"yaml"
],
"eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
"eslint.useFlatConfig": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
",
Expand Down Expand Up @@ -272,7 +269,6 @@ describe("createDotVSCode", () => {
"yaml"
],
"eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
"eslint.useFlatConfig": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
",
Expand Down
1 change: 0 additions & 1 deletion src/steps/writing/creation/dotVSCode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export async function createDotVSCode(options: Options) {
"yaml",
],
"eslint.rules.customizations": [{ rule: "*", severity: "warn" }],
"eslint.useFlatConfig": true,
"typescript.tsdk": "node_modules/typescript/lib",
}),
"tasks.json": await formatJson({
Expand Down

0 comments on commit 531142d

Please sign in to comment.