Skip to content

Commit e224258

Browse files
committed
Updated .gitignore
Signed-off-by: Magic <magicoflolis@tuta.io>
1 parent 2696988 commit e224258

1 file changed

Lines changed: 134 additions & 13 deletions

File tree

.gitignore

Lines changed: 134 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,138 @@
1-
# Dependency directories
2-
**/node_modules/**
3-
yarn.lock
4-
.vscode/.history
1+
build
2+
Notes
3+
.history
54
web-ext-artifacts
6-
tests/firefox/*
7-
tests/chrome/*
8-
tests/userscript/magic-userjs.dev.user.js
5+
tests
96
web-ext
10-
**/build/**
11-
**/Notes/**
12-
**/chrlauncher/**
137

14-
# dotenv environment variable file
8+
9+
# Logs
10+
logs
11+
*.log
12+
npm-debug.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
lerna-debug.log*
16+
.pnpm-debug.log*
17+
18+
# Diagnostic reports (https://nodejs.org/api/report.html)
19+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
20+
21+
# Runtime data
22+
pids
23+
*.pid
24+
*.seed
25+
*.pid.lock
26+
27+
# Directory for instrumented libs generated by jscoverage/JSCover
28+
lib-cov
29+
30+
# Coverage directory used by tools like istanbul
31+
coverage
32+
*.lcov
33+
34+
# nyc test coverage
35+
.nyc_output
36+
37+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
38+
.grunt
39+
40+
# Bower dependency directory (https://bower.io/)
41+
bower_components
42+
43+
# node-waf configuration
44+
.lock-wscript
45+
46+
# Compiled binary addons (https://nodejs.org/api/addons.html)
47+
build/Release
48+
49+
# Dependency directories
50+
node_modules/
51+
jspm_packages/
52+
53+
# Snowpack dependency directory (https://snowpack.dev/)
54+
web_modules/
55+
56+
# TypeScript cache
57+
*.tsbuildinfo
58+
59+
# Optional npm cache directory
60+
.npm
61+
62+
# Optional eslint cache
63+
.eslintcache
64+
65+
# Optional stylelint cache
66+
.stylelintcache
67+
68+
# Microbundle cache
69+
.rpt2_cache/
70+
.rts2_cache_cjs/
71+
.rts2_cache_es/
72+
.rts2_cache_umd/
73+
74+
# Optional REPL history
75+
.node_repl_history
76+
77+
# Output of 'npm pack'
78+
*.tgz
79+
80+
# Yarn Integrity file
81+
.yarn-integrity
82+
83+
# dotenv environment variable files
1584
.env
16-
*.bak
17-
*.web-extension-id
85+
.env.development.local
86+
.env.test.local
87+
.env.production.local
88+
.env.local
89+
90+
# parcel-bundler cache (https://parceljs.org/)
91+
.cache
92+
.parcel-cache
93+
94+
# Next.js build output
95+
.next
96+
out
97+
98+
# Nuxt.js build / generate output
99+
.nuxt
100+
dist
101+
102+
# Gatsby files
103+
.cache/
104+
# Comment in the public line in if your project uses Gatsby and not Next.js
105+
# https://nextjs.org/blog/next-9-1#public-directory-support
106+
# public
107+
108+
# vuepress build output
109+
.vuepress/dist
110+
111+
# vuepress v2.x temp and cache directory
112+
.temp
113+
.cache
114+
115+
# Docusaurus cache and generated files
116+
.docusaurus
117+
118+
# Serverless directories
119+
.serverless/
120+
121+
# FuseBox cache
122+
.fusebox/
123+
124+
# DynamoDB Local files
125+
.dynamodb/
126+
127+
# TernJS port file
128+
.tern-port
129+
130+
# Stores VSCode versions used for testing VSCode extensions
131+
.vscode-test
132+
133+
# yarn v2
134+
.yarn/cache
135+
.yarn/unplugged
136+
.yarn/build-state.yml
137+
.yarn/install-state.gz
138+
.pnp.*

0 commit comments

Comments
 (0)