Skip to content

Commit 3a095da

Browse files
committed
Update .gitignore
1 parent fa9416b commit 3a095da

File tree

1 file changed

+68
-118
lines changed

1 file changed

+68
-118
lines changed

.gitignore

Lines changed: 68 additions & 118 deletions
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,33 @@
1-
# Custom
2-
.idea/
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dotnet
4+
.env
5+
dist/
36
App_Data/
7+
wwwroot/
8+
.vscode/
9+
.idea/
10+
*.user
11+
*.tsbuildinfo
12+
#sqlite
13+
.vs/
414
bin/
515
obj/
16+
*.db
17+
*.db-shm
18+
*.db-wal
19+
*.db-journal
20+
*.sqlite
21+
*.sqlite
22+
*.sqlite-shm
23+
*.sqlite-wal
624
Configure.secrets.cs
25+
appsettings.Production.*
726

8-
# Logs
9-
logs
10-
*.log
11-
npm-debug.log*
12-
yarn-debug.log*
13-
yarn-error.log*
14-
lerna-debug.log*
15-
.pnpm-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-
# Directory for instrumented libs generated by jscoverage/JSCover
27-
lib-cov
28-
29-
# Coverage directory used by tools like istanbul
30-
coverage
31-
*.lcov
32-
33-
# nyc test coverage
34-
.nyc_output
35-
36-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
37-
.grunt
38-
39-
# Bower dependency directory (https://bower.io/)
40-
bower_components
41-
42-
# node-waf configuration
43-
.lock-wscript
44-
45-
# Compiled binary addons (https://nodejs.org/api/addons.html)
46-
build/Release
47-
48-
# Dependency directories
27+
# dependencies
4928
node_modules/
50-
jspm_packages/
51-
52-
# Snowpack dependency directory (https://snowpack.dev/)
53-
web_modules/
54-
55-
# TypeScript cache
56-
*.tsbuildinfo
57-
58-
# Optional npm cache directory
59-
.npm
60-
61-
# Optional eslint cache
62-
.eslintcache
63-
64-
# Optional stylelint cache
65-
.stylelintcache
66-
67-
# Microbundle cache
68-
.rpt2_cache/
69-
.rts2_cache_cjs/
70-
.rts2_cache_es/
71-
.rts2_cache_umd/
72-
73-
# Optional REPL history
74-
.node_repl_history
75-
76-
# Output of 'npm pack'
77-
*.tgz
78-
79-
# Yarn Integrity file
80-
.yarn-integrity
29+
.pnp
30+
.pnp.js
8131

8232
# dotenv environment variable files
8333
.env
@@ -86,10 +36,6 @@ web_modules/
8636
.env.production.local
8737
.env.local
8838

89-
# parcel-bundler cache (https://parceljs.org/)
90-
.cache
91-
.parcel-cache
92-
9339
# Next.js build output
9440
.next
9541
out
@@ -98,47 +44,51 @@ out
9844
.nuxt
9945
dist
10046

101-
# Gatsby files
102-
.cache/
103-
# Comment in the public line in if your project uses Gatsby and not Next.js
104-
# https://nextjs.org/blog/next-9-1#public-directory-support
105-
# public
106-
107-
# vuepress build output
108-
.vuepress/dist
109-
110-
# vuepress v2.x temp and cache directory
111-
.temp
112-
.cache
113-
114-
# vitepress build output
115-
**/.vitepress/dist
116-
117-
# vitepress cache directory
118-
**/.vitepress/cache
119-
120-
# Docusaurus cache and generated files
121-
.docusaurus
122-
123-
# Serverless directories
124-
.serverless/
125-
126-
# FuseBox cache
127-
.fusebox/
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/
62+
63+
# .NET Core
64+
project.lock.json
65+
project.fragment.lock.json
66+
artifacts/
67+
68+
# ASP.NET Scaffolding
69+
ScaffoldingReadMe.txt
70+
71+
# NuGet Packages
72+
*.nupkg
73+
# NuGet Symbol Packages
74+
*.snupkg
75+
76+
# dotenv environment variables file
77+
.env
12878

129-
# DynamoDB Local files
130-
.dynamodb/
79+
# Others
80+
~$*
81+
*~
82+
CodeCoverage/
13183

132-
# TernJS port file
133-
.tern-port
84+
# MSBuild Binary and Structured Log
85+
*.binlog
13486

135-
# Stores VSCode versions used for testing VSCode extensions
136-
.vscode-test
87+
# MSTest test Results
88+
[Tt]est[Rr]esult*/
89+
[Bb]uild[Ll]og.*
13790

138-
# yarn v2
139-
.yarn/cache
140-
.yarn/unplugged
141-
.yarn/build-state.yml
142-
.yarn/install-state.gz
143-
.pnp.*
144-
*.user
91+
# NUnit
92+
*.VisualState.xml
93+
TestResult.xml
94+
nunit-*.xml

0 commit comments

Comments
 (0)