Skip to content

Commit e0b6a49

Browse files
committed
chore: update .gitignore
1 parent 6db91da commit e0b6a49

File tree

1 file changed

+81
-25
lines changed

1 file changed

+81
-25
lines changed

.gitignore

+81-25
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,12 @@ mono_crash.*
2323
[Rr]eleases/
2424
x64/
2525
x86/
26-
[Ww][Ii][Nn]32/
2726
[Aa][Rr][Mm]/
2827
[Aa][Rr][Mm]64/
2928
bld/
3029
[Bb]in/
3130
[Oo]bj/
32-
[Oo]ut/
3331
[Ll]og/
34-
[Ll]ogs/
3532

3633
# Visual Studio 2015/2017 cache/options directory
3734
.vs/
@@ -45,10 +42,9 @@ Generated\ Files/
4542
[Tt]est[Rr]esult*/
4643
[Bb]uild[Ll]og.*
4744

48-
# NUnit
45+
# NUNIT
4946
*.VisualState.xml
5047
TestResult.xml
51-
nunit-*.xml
5248

5349
# Build Results of an ATL Project
5450
[Dd]ebugPS/
@@ -63,9 +59,6 @@ project.lock.json
6359
project.fragment.lock.json
6460
artifacts/
6561

66-
# ASP.NET Scaffolding
67-
ScaffoldingReadMe.txt
68-
6962
# StyleCop
7063
StyleCopReport.xml
7164

@@ -132,6 +125,9 @@ _ReSharper*/
132125
*.[Rr]e[Ss]harper
133126
*.DotSettings.user
134127

128+
# JustCode is a .NET coding add-in
129+
.JustCode
130+
135131
# TeamCity is a build add-in
136132
_TeamCity*
137133

@@ -142,11 +138,6 @@ _TeamCity*
142138
.axoCover/*
143139
!.axoCover/settings.json
144140

145-
# Coverlet is a free, cross platform Code Coverage Tool
146-
coverage*.json
147-
coverage*.xml
148-
coverage*.info
149-
150141
# Visual Studio code coverage results
151142
*.coverage
152143
*.coveragexml
@@ -194,8 +185,6 @@ PublishScripts/
194185

195186
# NuGet Packages
196187
*.nupkg
197-
# NuGet Symbol Packages
198-
*.snupkg
199188
# The packages folder can be ignored because of Package Restore
200189
**/[Pp]ackages/*
201190
# except build/, which is used as an MSBuild target.
@@ -271,9 +260,7 @@ ServiceFabricBackup/
271260
*.bim.layout
272261
*.bim_*.settings
273262
*.rptproj.rsuser
274-
*- [Bb]ackup.rdl
275-
*- [Bb]ackup ([0-9]).rdl
276-
*- [Bb]ackup ([0-9][0-9]).rdl
263+
*- Backup*.rdl
277264

278265
# Microsoft Fakes
279266
FakesAssemblies/
@@ -356,11 +343,80 @@ healthchecksdb
356343
# Backup folder for Package Reference Convert tool in Visual Studio 2017
357344
MigrationBackup/
358345

359-
# Ionide (cross platform F# VS Code tools) working folder
360-
.ionide/
361346

362-
# Fody - auto-generated XML schema
363-
FodyWeavers.xsd
364-
/src/CoinyProject.WebUI/wwwroot/albums/elements
365-
/tests/CoinyProject.Application.AlbumService.Tests/test/albums/elements
366-
/tests/CoinyProject.Application.AlbumService.Tests/test/albums/elements/6abaf162-05db-4410-afcb-ea8e0a5db912_test.jpg
347+
348+
## VS CODE
349+
.vscode/*
350+
!.vscode/settings.json
351+
!.vscode/tasks.json
352+
!.vscode/launch.json
353+
!.vscode/extensions.json
354+
355+
356+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
357+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
358+
359+
# User-specific stuff
360+
.idea/**/workspace.xml
361+
.idea/**/tasks.xml
362+
.idea/**/usage.statistics.xml
363+
.idea/**/dictionaries
364+
.idea/**/shelf
365+
366+
# Generated files
367+
.idea/**/contentModel.xml
368+
369+
# Sensitive or high-churn files
370+
.idea/**/dataSources/
371+
.idea/**/dataSources.ids
372+
.idea/**/dataSources.local.xml
373+
.idea/**/sqlDataSources.xml
374+
.idea/**/dynamic.xml
375+
.idea/**/uiDesigner.xml
376+
.idea/**/dbnavigator.xml
377+
378+
# Gradle
379+
.idea/**/gradle.xml
380+
.idea/**/libraries
381+
382+
# Gradle and Maven with auto-import
383+
# When using Gradle or Maven with auto-import, you should exclude module files,
384+
# since they will be recreated, and may cause churn. Uncomment if using
385+
# auto-import.
386+
# .idea/modules.xml
387+
# .idea/*.iml
388+
# .idea/modules
389+
390+
# CMake
391+
cmake-build-*/
392+
393+
# Mongo Explorer plugin
394+
.idea/**/mongoSettings.xml
395+
396+
# File-based project format
397+
*.iws
398+
399+
# IntelliJ
400+
out/
401+
402+
# mpeltonen/sbt-idea plugin
403+
.idea
404+
.idea_modules/
405+
406+
# JIRA plugin
407+
atlassian-ide-plugin.xml
408+
409+
# Cursive Clojure plugin
410+
.idea/replstate.xml
411+
412+
# Crashlytics plugin (for Android Studio and IntelliJ)
413+
com_crashlytics_export_strings.xml
414+
crashlytics.properties2
415+
crashlytics-build.properties
416+
fabric.properties
417+
418+
# Editor-based Rest Client
419+
.idea/httpRequests
420+
421+
# Android studio 3.1+ serialized cache file
422+
.idea/caches/build_file_checksums.ser

0 commit comments

Comments
 (0)