Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 4bd139a

Browse files
committed
Update .gitignore using github/gitignore
Updated for Node and VS Code
1 parent adbec56 commit 4bd139a

File tree

2 files changed

+65
-2
lines changed

2 files changed

+65
-2
lines changed

.gitignore

Lines changed: 60 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,65 @@
44
/*.xcodeproj
55
xcuserdata/
66
.swiftpm
7+
8+
# NodeJS
9+
## Logs
10+
logs
11+
*.log
12+
npm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
lerna-debug.log*
16+
17+
## Diagnostic reports (https://nodejs.org/api/report.html)
18+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
19+
20+
## Runtime data
21+
pids
22+
*.pid
23+
*.seed
24+
*.pid.lock
25+
26+
## Dependency directories
727
node_modules/
8-
.parcel-cache
9-
.vscode
28+
jspm_packages/
29+
30+
## Snowpack dependency directory (https://snowpack.dev/)
31+
web_modules/
32+
33+
## Optional npm cache directory
34+
.npm
35+
36+
## Optional eslint cache
37+
.eslintcache
38+
39+
## Yarn Integrity file
40+
.yarn-integrity
41+
42+
## dotenv environment variables file
43+
.env
44+
.env.test
45+
46+
## parcel-bundler cache (https://parceljs.org/)
1047
.cache
48+
.parcel-cache
49+
50+
## Gatsby files
51+
.cache/
52+
53+
## yarn v2
54+
.yarn/cache
55+
.yarn/unplugged
56+
.yarn/build-state.yml
57+
.pnp.*
58+
59+
# VS Code
60+
.vscode/*
61+
!.vscode/settings.json
62+
!.vscode/tasks.json
63+
!.vscode/launch.json
64+
!.vscode/extensions.json
65+
*.code-workspace
66+
67+
## Local History for Visual Studio Code
68+
.history/

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"files.associations": {
3+
"*.css": "postcss"
4+
}
5+
}

0 commit comments

Comments
 (0)