Skip to content

Commit c3779f8

Browse files
committed
Update .gitignore
1 parent 6beddc2 commit c3779f8

File tree

1 file changed

+65
-26
lines changed

1 file changed

+65
-26
lines changed

.gitignore

Lines changed: 65 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -6,50 +6,89 @@ 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
1623
*.sqlite-wal
1724
Configure.secrets.cs
25+
appsettings.Production.*
1826

1927
# dependencies
2028
node_modules/
2129
.pnp
2230
.pnp.js
2331

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

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

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

34-
# misc
35-
.DS_Store
36-
*.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/
3762

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

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

49-
# vercel
50-
.vercel
51-
.idea
52-
obj/
53-
bin/
54-
MyApp/mise.toml
55-
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)