Skip to content

Commit 9e94e45

Browse files
committed
update .gitignore
1 parent 77cc88f commit 9e94e45

File tree

1 file changed

+31
-26
lines changed

1 file changed

+31
-26
lines changed

.gitignore

Lines changed: 31 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ flycheck_*.el
111111
# network security
112112
/network-security.data
113113

114+
# undo-tree
115+
*.~undo-tree~
116+
114117
#
115118
# FROM: https://raw.githubusercontent.com/sudorook/gitignore/tweak/Global/Linux.gitignore
116119
#
@@ -210,7 +213,8 @@ GitHub.sublime-settings
210213

211214
# Swap
212215
[._]*.s[a-v][a-z]
213-
!*.svg # comment out if you don't need vector files
216+
# comment out the next line if you don't need vector files
217+
!*.svg
214218
[._]*.sw[a-p]
215219
[._]s[a-rt-v][a-z]
216220
[._]ss[a-gi-z]
@@ -262,12 +266,17 @@ x86/
262266
[Aa][Rr][Mm]64/
263267
[Aa][Rr][Mm]64[Ee][Cc]/
264268
bld/
265-
[Bb]in/
266269
[Oo]bj/
267270
[Oo]ut/
268271
[Ll]og/
269272
[Ll]ogs/
270273

274+
# Build results on 'Bin' directories
275+
**/[Bb]in/*
276+
# Uncomment if you have tasks that rely on *.refresh files to move binaries
277+
# (https://github.com/github/gitignore/pull/3736)
278+
#!**/[Bb]in/*.refresh
279+
271280
# Visual Studio 2015/2017 cache/options directory
272281
.vs/
273282
# Uncomment if you have tasks that create the project's static files in wwwroot
@@ -279,12 +288,16 @@ Generated\ Files/
279288
# MSTest test Results
280289
[Tt]est[Rr]esult*/
281290
[Bb]uild[Ll]og.*
291+
*.trx
282292

283293
# NUnit
284294
*.VisualState.xml
285295
TestResult.xml
286296
nunit-*.xml
287297

298+
# Approval Tests result files
299+
*.received.*
300+
288301
# Build Results of an ATL Project
289302
[Dd]ebugPS/
290303
[Rr]eleasePS/
@@ -554,22 +567,22 @@ node_modules/
554567
_Pvt_Extensions
555568

556569
# Paket dependency manager
557-
.paket/paket.exe
570+
**/.paket/paket.exe
558571
paket-files/
559572

560573
# FAKE - F# Make
561-
.fake/
574+
**/.fake/
562575

563576
# CodeRush personal settings
564-
.cr/personal
577+
**/.cr/personal
565578

566579
# Python Tools for Visual Studio (PTVS)
567-
__pycache__/
580+
**/__pycache__/
568581
*.pyc
569582

570583
# Cake - Uncomment if you are using it
571-
# tools/**
572-
# !tools/packages.config
584+
#tools/**
585+
#!tools/packages.config
573586

574587
# Tabs Studio
575588
*.tss
@@ -591,6 +604,7 @@ ASALocalRun/
591604

592605
# MSBuild Binary and Structured Log
593606
*.binlog
607+
MSBuild_Logs/
594608

595609
# AWS SAM Build and Temporary Artifacts folder
596610
.aws-sam
@@ -599,10 +613,10 @@ ASALocalRun/
599613
*.nvuser
600614

601615
# MFractors (Xamarin productivity tool) working folder
602-
.mfractor/
616+
**/.mfractor/
603617

604618
# Local History for Visual Studio
605-
.localhistory/
619+
**/.localhistory/
606620

607621
# Visual Studio History (VSHistory) files
608622
.vshistory/
@@ -614,7 +628,7 @@ healthchecksdb
614628
MigrationBackup/
615629

616630
# Ionide (cross platform F# VS Code tools) working folder
617-
.ionide/
631+
**/.ionide/
618632

619633
# Fody - auto-generated XML schema
620634
FodyWeavers.xsd
@@ -625,21 +639,21 @@ FodyWeavers.xsd
625639
!.vscode/tasks.json
626640
!.vscode/launch.json
627641
!.vscode/extensions.json
628-
*.code-workspace
642+
!.vscode/*.code-snippets
629643

630644
# Local History for Visual Studio Code
631645
.history/
632646

647+
# Built Visual Studio Code Extensions
648+
*.vsix
649+
633650
# Windows Installer files from build outputs
634651
*.cab
635652
*.msi
636653
*.msix
637654
*.msm
638655
*.msp
639656

640-
# JetBrains Rider
641-
*.sln.iml
642-
643657
#
644658
# FROM: https://raw.githubusercontent.com/sudorook/gitignore/tweak/Global/Windows.gitignore
645659
#
@@ -687,7 +701,6 @@ npm-debug.log*
687701
yarn-debug.log*
688702
yarn-error.log*
689703
lerna-debug.log*
690-
.pnpm-debug.log*
691704

692705
# Diagnostic reports (https://nodejs.org/api/report.html)
693706
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -739,12 +752,6 @@ web_modules/
739752
# Optional stylelint cache
740753
.stylelintcache
741754

742-
# Microbundle cache
743-
.rpt2_cache/
744-
.rts2_cache_cjs/
745-
.rts2_cache_es/
746-
.rts2_cache_umd/
747-
748755
# Optional REPL history
749756
.node_repl_history
750757

@@ -756,10 +763,8 @@ web_modules/
756763

757764
# dotenv environment variable files
758765
.env
759-
.env.development.local
760-
.env.test.local
761-
.env.production.local
762-
.env.local
766+
.env.*
767+
!.env.example
763768

764769
# parcel-bundler cache (https://parceljs.org/)
765770
.cache

0 commit comments

Comments
 (0)