Skip to content

Commit 95aba54

Browse files
committed
Update .gitignore
1 parent 51f2a98 commit 95aba54

File tree

1 file changed

+64
-26
lines changed

1 file changed

+64
-26
lines changed

.gitignore

Lines changed: 64 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,17 @@ dist/
66
App_Data/
77
wwwroot/
88
.vscode/
9+
.idea/
910
*.user
1011
*.tsbuildinfo
1112
#sqlite
1213
.vs/
14+
bin/
15+
obj/
16+
*.db
17+
*.db-shm
18+
*.db-wal
19+
*.db-journal
1320
*.sqlite
1421
*.sqlite
1522
*.sqlite-shm
@@ -22,35 +29,66 @@ node_modules/
2229
.pnp
2330
.pnp.js
2431

25-
# testing
26-
/coverage
32+
# dotenv environment variable files
33+
.env
34+
.env.development.local
35+
.env.test.local
36+
.env.production.local
37+
.env.local
2738

28-
# next.js
29-
.next/
30-
out/
39+
# Next.js build output
40+
.next
41+
out
3142

32-
# production
33-
build/
43+
# Nuxt.js build / generate output
44+
.nuxt
45+
dist
3446

35-
# misc
36-
.DS_Store
37-
*.pem
47+
# Build results
48+
[Dd]ebug/
49+
[Dd]ebugPublic/
50+
[Rr]elease/
51+
[Rr]eleases/
52+
x64/
53+
x86/
54+
[Ww][Ii][Nn]32/
55+
[Aa][Rr][Mm]/
56+
[Aa][Rr][Mm]64/
57+
bld/
58+
[Bb]in/
59+
[Oo]bj/
60+
[Ll]og/
61+
[Ll]ogs/
3862

39-
# debug
40-
npm-debug.log*
41-
yarn-debug.log*
42-
yarn-error.log*
63+
# .NET Core
64+
project.lock.json
65+
project.fragment.lock.json
66+
artifacts/
4367

44-
# local env files
45-
.env.local
46-
.env.development.local
47-
.env.test.local
48-
.env.production.local
68+
# ASP.NET Scaffolding
69+
ScaffoldingReadMe.txt
4970

50-
# vercel
51-
.vercel
52-
.idea
53-
obj/
54-
bin/
55-
MyApp/mise.toml
56-
mise.toml
71+
# NuGet Packages
72+
*.nupkg
73+
# NuGet Symbol Packages
74+
*.snupkg
75+
76+
# dotenv environment variables file
77+
.env
78+
79+
# Others
80+
~$*
81+
*~
82+
CodeCoverage/
83+
84+
# MSBuild Binary and Structured Log
85+
*.binlog
86+
87+
# MSTest test Results
88+
[Tt]est[Rr]esult*/
89+
[Bb]uild[Ll]og.*
90+
91+
# NUnit
92+
*.VisualState.xml
93+
TestResult.xml
94+
nunit-*.xml

0 commit comments

Comments
 (0)