Skip to content

Commit 531142d

Browse files
fix: remove outdated vscode-eslint eslint.useFlatConfig setting (#1695)
## 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 💖
1 parent 3bd0f36 commit 531142d

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

.vscode/settings.json

-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,5 @@
1414
"yaml"
1515
],
1616
"eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
17-
"eslint.useFlatConfig": true,
1817
"typescript.tsdk": "node_modules/typescript/lib"
1918
}

src/steps/writing/creation/dotVSCode.test.ts

-4
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ describe("createDotVSCode", () => {
7474
"yaml"
7575
],
7676
"eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
77-
"eslint.useFlatConfig": true,
7877
"typescript.tsdk": "node_modules/typescript/lib"
7978
}
8079
",
@@ -149,7 +148,6 @@ describe("createDotVSCode", () => {
149148
"yaml"
150149
],
151150
"eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
152-
"eslint.useFlatConfig": true,
153151
"typescript.tsdk": "node_modules/typescript/lib"
154152
}
155153
",
@@ -216,7 +214,6 @@ describe("createDotVSCode", () => {
216214
"yaml"
217215
],
218216
"eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
219-
"eslint.useFlatConfig": true,
220217
"typescript.tsdk": "node_modules/typescript/lib"
221218
}
222219
",
@@ -272,7 +269,6 @@ describe("createDotVSCode", () => {
272269
"yaml"
273270
],
274271
"eslint.rules.customizations": [{ "rule": "*", "severity": "warn" }],
275-
"eslint.useFlatConfig": true,
276272
"typescript.tsdk": "node_modules/typescript/lib"
277273
}
278274
",

src/steps/writing/creation/dotVSCode.ts

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ export async function createDotVSCode(options: Options) {
6868
"yaml",
6969
],
7070
"eslint.rules.customizations": [{ rule: "*", severity: "warn" }],
71-
"eslint.useFlatConfig": true,
7271
"typescript.tsdk": "node_modules/typescript/lib",
7372
}),
7473
"tasks.json": await formatJson({

0 commit comments

Comments
 (0)