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