Skip to content

Commit 0aa5413

Browse files
committed
Update ignore patterns
1 parent 65d6be1 commit 0aa5413

File tree

1 file changed

+128
-18
lines changed

1 file changed

+128
-18
lines changed

.npmignore

Lines changed: 128 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#########
2121
TODO.md
2222
ROADMAP.md
23+
.postinstall.json
2324

2425
# Directories #
2526
###############
@@ -45,6 +46,72 @@ workshops/
4546
/etc/
4647
/docs/
4748

49+
# Compiled source #
50+
###################
51+
*.com
52+
*.class
53+
*.dll
54+
*.o
55+
*.so
56+
*.slo
57+
*.lo
58+
*.obj
59+
*.dylib
60+
*.lai
61+
*.la
62+
*.a
63+
*.lib
64+
*.ko
65+
*.elf
66+
*.node
67+
68+
# Precompiled headers #
69+
#######################
70+
*.gch
71+
*.pch
72+
73+
# Executables #
74+
###############
75+
*.exe
76+
*.out
77+
*.app
78+
79+
# Packages #
80+
############
81+
*.7z
82+
*.dmg
83+
*.gz
84+
*.iso
85+
*.jar
86+
*.rar
87+
*.tar
88+
*.zip
89+
90+
# Make an exception for compressed distributable files:
91+
!dist/*.gz
92+
93+
# Logs and databases #
94+
######################
95+
*.log
96+
*.sql
97+
*.sqlite
98+
99+
# OS generated files #
100+
######################
101+
.DS_Store
102+
.DS_Store?
103+
._*
104+
.Spotlight-V100
105+
.Trashes
106+
Icon?
107+
ehthumbs.db
108+
Thumbs.db
109+
Desktop.ini
110+
111+
# Temporary files #
112+
###################
113+
*~
114+
48115
# Node.js #
49116
###########
50117
.npmignore
@@ -58,6 +125,21 @@ tsconfig.json
58125
tslint.json
59126
*.tsbuildinfo
60127

128+
# Matlab #
129+
##########
130+
*.asv
131+
*.mex*
132+
133+
# Fortran #
134+
###########
135+
*.mod
136+
137+
# R #
138+
#####
139+
.Rhistory
140+
.Rapp.history
141+
.Rproj.user/
142+
61143
# Python #
62144
##########
63145
__pycache__/
@@ -66,31 +148,59 @@ __pycache__/
66148
*.egg-info/
67149
.ipynb_checkpoints
68150

69-
# Logs #
70-
########
151+
# TeX #
152+
#######
153+
*.aux
154+
*.lof
71155
*.log
72-
73-
# OS generated files #
74-
######################
75-
.DS_Store
76-
.DS_Store?
77-
._*
78-
.Spotlight-V100
79-
.Trashes
80-
Icon?
81-
ehthumbs.db
82-
Thumbs.db
83-
Desktop.ini
84-
85-
# Temporary files #
86-
###################
87-
*~
156+
*.lot
157+
*.fls
158+
*.out
159+
*.toc
160+
*.dvi
161+
*-converted-to.*
162+
*.bbl
163+
*.bcf
164+
*.blg
165+
*-blx.aux
166+
*-blx.bib
167+
*.brf
168+
*.run.xml
169+
*.fdb_latexmk
170+
*.synctex
171+
*.synctex.gz
172+
*.synctex.gz(busy)
173+
*.pdfsync
174+
*.alg
175+
*.loa
176+
acs-*.bib
177+
*.thm
178+
*.nav
179+
*.snm
180+
*.vrb
181+
*.acn
182+
*.acr
183+
*.glg
184+
*.glo
185+
*.gls
186+
*-concordance.tex
187+
*.tikz
188+
*-tikzDictionary
189+
*.idx
190+
*.ilg
191+
*.ind
192+
*.ist
88193

89194
# Git #
90195
#######
91196
.git*
92197
.mailmap
93198

199+
# Visual Studio #
200+
#################
201+
.vscode/
202+
jsconfig.json
203+
94204
# Utilities #
95205
#############
96206
.jshintrc

0 commit comments

Comments
 (0)