Skip to content

Commit 274ec71

Browse files
feat: Updated source.fixAll.eslint to explicit (#1110)
<!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 💖. Please fill out all fields below and make sure each item is true and [x] checked. Otherwise we may not be able to review your PR. --> ## PR Checklist - [x] Addresses an existing open issue: fixes #1105 - [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 <!-- Description of what is changed and how the code change does that. --> Updated source.fixAll.eslint to "explicit" ![image](https://github.com/JoshuaKGoldberg/create-typescript-app/assets/107350270/08c05bfa-33db-4014-b32e-486c8a97fed8) --------- Co-authored-by: Josh Goldberg ✨ <[email protected]>
1 parent 256f311 commit 274ec71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"editor.codeActionsOnSave": { "source.fixAll.eslint": true },
2+
"editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" },
33
"editor.defaultFormatter": "esbenp.prettier-vscode",
44
"editor.formatOnSave": true,
55
"editor.rulers": [80],

src/steps/writing/creation/dotVSCode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export async function createDotVSCode(options: Options) {
3232
}),
3333
"settings.json": await formatJson({
3434
"editor.codeActionsOnSave": {
35-
"source.fixAll.eslint": true,
35+
"source.fixAll.eslint": "explicit",
3636
},
3737
"editor.defaultFormatter": "esbenp.prettier-vscode",
3838
"editor.formatOnSave": true,

0 commit comments

Comments
 (0)