Skip to content

Commit 1a35c48

Browse files
committed
Update .gitignore
1 parent b46aa5e commit 1a35c48

File tree

1 file changed

+86
-1
lines changed

1 file changed

+86
-1
lines changed

.gitignore

Lines changed: 86 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,86 @@
1-
node_modules
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# Runtime data
4+
pids
5+
*.pid
6+
*.seed
7+
*.pid.lock
8+
9+
# Directory for instrumented libs generated by jscoverage/JSCover
10+
lib-cov
11+
12+
# Coverage directory used by tools like istanbul
13+
coverage
14+
15+
# nyc test coverage
16+
.nyc_output
17+
18+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
19+
.grunt
20+
21+
# Bower dependency directory (https://bower.io/)
22+
bower_components
23+
24+
# node-waf configuration
25+
.lock-wscript
26+
27+
# IDEs and editors
28+
.idea
29+
.project
30+
.classpath
31+
.c9/
32+
*.launch
33+
.settings/
34+
*.sublime-workspace
35+
36+
# IDE - VSCode
37+
.vscode/*
38+
!.vscode/settings.json
39+
!.vscode/tasks.json
40+
!.vscode/launch.json
41+
!.vscode/extensions.json
42+
43+
# misc
44+
.sass-cache
45+
connect.lock
46+
typings
47+
48+
# Logs
49+
logs
50+
*.log
51+
npm-debug.log*
52+
yarn-debug.log*
53+
yarn-error.log*
54+
55+
56+
# Dependency directories
57+
node_modules/
58+
jspm_packages/
59+
60+
# Optional npm cache directory
61+
.npm
62+
63+
# Optional eslint cache
64+
.eslintcache
65+
66+
# Optional REPL history
67+
.node_repl_history
68+
69+
# Output of 'npm pack'
70+
*.tgz
71+
72+
# Yarn Integrity file
73+
.yarn-integrity
74+
75+
# dotenv environment variables file
76+
.env
77+
78+
# next.js build output
79+
.next
80+
81+
# Lerna
82+
lerna-debug.log
83+
84+
# System Files
85+
.DS_Store
86+
Thumbs.db

0 commit comments

Comments
 (0)