Skip to content

Commit d412169

Browse files
committed
🙈 Update .gitignore
1 parent ccae7bc commit d412169

File tree

1 file changed

+135
-0
lines changed

1 file changed

+135
-0
lines changed

.gitignore

+135
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,138 @@
2121
npm-debug.log*
2222
yarn-debug.log*
2323
yarn-error.log*
24+
25+
# See http://help.github.com/ignore-files/ for more about ignoring files.
26+
27+
# compiled output
28+
/dist
29+
/tmp
30+
/out-tsc
31+
32+
# Runtime data
33+
pids
34+
*.pid
35+
*.seed
36+
*.pid.lock
37+
38+
# Directory for instrumented libs generated by jscoverage/JSCover
39+
lib-cov
40+
41+
# Coverage directory used by tools like istanbul
42+
coverage
43+
44+
# nyc test coverage
45+
.nyc_output
46+
47+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
48+
.grunt
49+
50+
# Bower dependency directory (https://bower.io/)
51+
bower_components
52+
53+
# node-waf configuration
54+
.lock-wscript
55+
56+
# IDEs and editors
57+
.idea
58+
.project
59+
.classpath
60+
.c9/
61+
*.launch
62+
.settings/
63+
*.sublime-workspace
64+
65+
# IDE - VSCode
66+
.vscode/*
67+
!.vscode/settings.json
68+
!.vscode/tasks.json
69+
!.vscode/launch.json
70+
!.vscode/extensions.json
71+
72+
# misc
73+
.sass-cache
74+
connect.lock
75+
typings
76+
77+
# Logs
78+
logs
79+
*.log
80+
npm-debug.log*
81+
yarn-debug.log*
82+
yarn-error.log*
83+
84+
85+
# Dependency directories
86+
node_modules/
87+
jspm_packages/
88+
89+
# Optional npm cache directory
90+
.npm
91+
92+
# Optional eslint cache
93+
.eslintcache
94+
95+
# Optional REPL history
96+
.node_repl_history
97+
98+
# Output of 'npm pack'
99+
*.tgz
100+
101+
# Yarn Integrity file
102+
.yarn-integrity
103+
104+
# dotenv environment variables file
105+
.env
106+
107+
# next.js build output
108+
.next
109+
110+
# Lerna
111+
lerna-debug.log
112+
113+
# System Files
114+
.DS_Store
115+
Thumbs.db
116+
117+
# https://yarnpkg.com/getting-started/qa/#which-files-should-be-gitignored
118+
.yarn/*
119+
!.yarn/cache
120+
!.yarn/patches
121+
!.yarn/plugins
122+
!.yarn/releases
123+
!.yarn/sdks
124+
!.yarn/versions
125+
126+
node_modules
127+
yarn-error.log
128+
129+
.DS_Store
130+
.history
131+
132+
junit.xml
133+
134+
# This file is generated by the Smart Merge workflow
135+
/merge-conflict-resolution.patch
136+
137+
# The tarballs generated by "yarn pack" are never kept either
138+
package.tgz
139+
140+
# The artifacts generated by "yarn release:all" are never kept
141+
/artifacts
142+
/dist
143+
144+
# Our documentation is now handled by Netlify
145+
/docs
146+
147+
# Those files are meant to be local-only
148+
/packages/*/bundles
149+
150+
# Those folders are meant to contain the prepack build artifacts; we don't commit them
151+
/packages/*/lib/*
152+
153+
# Those packages are built inline and the JS files must not be checked-in
154+
/packages/yarnpkg-libui/sources/**/*.js
155+
156+
/vscode-case-study
157+
158+
.idea

0 commit comments

Comments
 (0)