Skip to content

Commit fcd177a

Browse files
committed
chore: do not store .vscode/settings.json in git
1 parent e99b365 commit fcd177a

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,14 @@ yarn-error.log*
2424

2525
.eslintcache
2626

27-
# jetbrains tools
27+
# IDE
2828
.idea
29+
.vscode/*
30+
!.vscode/settings.json.default
31+
!.vscode/tasks.json
32+
!.vscode/launch.json
33+
!.vscode/extensions.json
34+
!.vscode/*.code-snippets
2935

3036
# TypeScript cache
3137
tsconfig.base.tsbuildinfo%

.vscode/settings.json renamed to .vscode/settings.json.default

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"out": true // set this to false to include "out" folder in search results
88
},
99
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
10-
"typescript.tsc.autoDetect": "off"
10+
"typescript.tsc.autoDetect": "off",
1111
}

0 commit comments

Comments
 (0)