Skip to content

Commit d8f3a7f

Browse files
committed
Add .gitignore
Change-Id: I94bb7a3929bc7844b70257f05367c704e3d965f3
1 parent bfb2301 commit d8f3a7f

File tree

1 file changed

+124
-0
lines changed

1 file changed

+124
-0
lines changed

.gitignore

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
# Node.js
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
lerna-debug.log*
7+
.npm
8+
.eslintcache
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
16+
# Coverage directory used by tools like istanbul
17+
coverage/
18+
*.lcov
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (https://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
jspm_packages/
37+
38+
# TypeScript cache
39+
*.tsbuildinfo
40+
41+
# Optional npm cache directory
42+
.npm
43+
44+
# Optional eslint cache
45+
.eslintcache
46+
47+
# Optional REPL history
48+
.node_repl_history
49+
50+
# Output of 'npm pack'
51+
*.tgz
52+
53+
# Yarn Integrity file
54+
.yarn-integrity
55+
56+
# dotenv environment variables file
57+
.env
58+
.env.test
59+
.env.production
60+
.env.local
61+
62+
# parcel-bundler cache (https://parceljs.org/)
63+
.cache
64+
.parcel-cache
65+
66+
# Next.js build output
67+
.next
68+
69+
# Nuxt.js build / generate output
70+
.nuxt
71+
dist
72+
73+
# Gatsby files
74+
.cache/
75+
public
76+
77+
# Storybook build outputs
78+
.out
79+
.storybook-out
80+
81+
# Temporary folders
82+
tmp/
83+
temp/
84+
85+
# Test artifacts
86+
test-results.xml
87+
failed_*.png
88+
screenshots/
89+
*.log
90+
91+
# OS generated files
92+
.DS_Store
93+
.DS_Store?
94+
._*
95+
.Spotlight-V100
96+
.Trashes
97+
ehthumbs.db
98+
Thumbs.db
99+
100+
# IDE and editor files
101+
.vscode/
102+
.idea/
103+
*.swp
104+
*.swo
105+
*~
106+
107+
# GitLab CI local testing
108+
.gitlab-ci-local/
109+
110+
# Puppeteer downloads
111+
.local-chromium/
112+
.local-firefox/
113+
114+
# Mocha/Chai specific
115+
mochawesome-report/
116+
117+
# Local configuration files
118+
config/local.json
119+
config/development.json
120+
config/production.json
121+
122+
# Backup files
123+
*.bak
124+
*.backup

0 commit comments

Comments
 (0)