Skip to content

Commit ec61ef1

Browse files
committed
chore: add .vscode/
1 parent 518a1e2 commit ec61ef1

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

.gitignore

+29
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,31 @@
11
node_modules/*
22
dist/*
3+
4+
# From https://www.toptal.com/developers/gitignore/api/visualstudiocode
5+
6+
### VisualStudioCode ###
7+
.vscode/*
8+
!.vscode/settings.json
9+
!.vscode/tasks.json
10+
!.vscode/launch.json
11+
!.vscode/extensions.json
12+
!.vscode/*.code-snippets
13+
14+
# Local History for Visual Studio Code
15+
.history/
16+
17+
# Built Visual Studio Code Extensions
18+
*.vsix
19+
20+
### VisualStudioCode Patch ###
21+
# Ignore all local history of files
22+
.history
23+
.ionide
24+
25+
# Support for Project snippet scope
26+
.vscode/*.code-snippets
27+
28+
# Ignore code-workspaces
29+
*.code-workspace
30+
31+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode

.vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["esbenp.prettier-vscode"]
3+
}

.vscode/settings.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
// From VSCode 1.67.1, this is the default
3+
// "editor.bracketPairColorization.enabled": true,
4+
"editor.guides.bracketPairs": "active",
5+
6+
"editor.defaultFormatter": "esbenp.prettier-vscode",
7+
"editor.formatOnSave": true,
8+
9+
// VSCode uses same TS version as package
10+
"typescript.tsdk": "node_modules/typescript/lib"
11+
}

0 commit comments

Comments
 (0)