Skip to content

Commit 7897276

Browse files
committed
πŸ™ˆ update gitignore
1 parent 57e3b27 commit 7897276

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

β€Ž.devcontainer/.devcontainer.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "My Codespace",
3+
"image": "mcr.microsoft.com/vscode/devcontainers/typescript-node:0-20",
4+
"customizations": {
5+
"vscode": {
6+
"settings": {
7+
"terminal.integrated.shell.linux": "/bin/bash"
8+
},
9+
"extensions": [
10+
"eamodio.gitlens",
11+
"codeandstuff.package-json-upgrade",
12+
"dbaeumer.vscode-eslint",
13+
"github.copilot",
14+
"github.copilot-chat",
15+
"humao.rest-client",
16+
"esbenp.prettier-vscode",
17+
"streetsidesoftware.code-spell-checker"
18+
]
19+
}
20+
},
21+
"postCreateCommand": "npm install"
22+
}

β€Ž.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ coverage
77
*.local*
88
*.localdev*
99
*.local_dev*
10-
*.dev*
10+
//*.dev*
1111
*.development*
1212
*.prod*
1313
*.production*

0 commit comments

Comments
Β (0)