Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.

Commit 9a465bf

Browse files
committed
Update .gitignore
1 parent de5e2f8 commit 9a465bf

1 file changed

Lines changed: 84 additions & 76 deletions

File tree

.gitignore

Lines changed: 84 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
2-
# Created by https://www.gitignore.io/api/node,webstorm+all
1+
# Created by https://www.toptal.com/developers/gitignore/api/node,visualstudiocode
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=node,visualstudiocode
33

44
### Node ###
55
# Logs
@@ -8,6 +8,11 @@ logs
88
npm-debug.log*
99
yarn-debug.log*
1010
yarn-error.log*
11+
lerna-debug.log*
12+
.pnpm-debug.log*
13+
14+
# Diagnostic reports (https://nodejs.org/api/report.html)
15+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
1116

1217
# Runtime data
1318
pids
@@ -20,6 +25,7 @@ lib-cov
2025

2126
# Coverage directory used by tools like istanbul
2227
coverage
28+
*.lcov
2329

2430
# nyc test coverage
2531
.nyc_output
@@ -40,15 +46,27 @@ build/Release
4046
node_modules/
4147
jspm_packages/
4248

43-
# TypeScript v1 declaration files
44-
typings/
49+
# Snowpack dependency directory (https://snowpack.dev/)
50+
web_modules/
51+
52+
# TypeScript cache
53+
*.tsbuildinfo
4554

4655
# Optional npm cache directory
4756
.npm
4857

4958
# Optional eslint cache
5059
.eslintcache
5160

61+
# Optional stylelint cache
62+
.stylelintcache
63+
64+
# Microbundle cache
65+
.rpt2_cache/
66+
.rts2_cache_cjs/
67+
.rts2_cache_es/
68+
.rts2_cache_umd/
69+
5270
# Optional REPL history
5371
.node_repl_history
5472

@@ -58,104 +76,94 @@ typings/
5876
# Yarn Integrity file
5977
.yarn-integrity
6078

61-
# dotenv environment variables file
79+
# dotenv environment variable files
6280
.env
81+
.env.development.local
82+
.env.test.local
83+
.env.production.local
84+
.env.local
6385

6486
# parcel-bundler cache (https://parceljs.org/)
6587
.cache
88+
.parcel-cache
6689

67-
# next.js build output
90+
# Next.js build output
6891
.next
92+
out
6993

70-
# nuxt.js build output
94+
# Nuxt.js build / generate output
7195
.nuxt
96+
dist
97+
98+
# Gatsby files
99+
.cache/
100+
# Comment in the public line in if your project uses Gatsby and not Next.js
101+
# https://nextjs.org/blog/next-9-1#public-directory-support
102+
# public
72103

73104
# vuepress build output
74105
.vuepress/dist
75106

76-
# Serverless directories
77-
.serverless
107+
# vuepress v2.x temp and cache directory
108+
.temp
78109

79-
### WebStorm+all ###
80-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
81-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
110+
# Docusaurus cache and generated files
111+
.docusaurus
82112

83-
# User-specific stuff
84-
.idea/**/workspace.xml
85-
.idea/**/tasks.xml
86-
.idea/**/usage.statistics.xml
87-
.idea/**/dictionaries
88-
.idea/**/shelf
89-
90-
# Generated files
91-
.idea/**/contentModel.xml
92-
93-
# Sensitive or high-churn files
94-
.idea/**/dataSources/
95-
.idea/**/dataSources.ids
96-
.idea/**/dataSources.local.xml
97-
.idea/**/sqlDataSources.xml
98-
.idea/**/dynamic.xml
99-
.idea/**/uiDesigner.xml
100-
.idea/**/dbnavigator.xml
101-
102-
# Gradle
103-
.idea/**/gradle.xml
104-
.idea/**/libraries
105-
106-
# Gradle and Maven with auto-import
107-
# When using Gradle or Maven with auto-import, you should exclude module files,
108-
# since they will be recreated, and may cause churn. Uncomment if using
109-
# auto-import.
110-
# .idea/modules.xml
111-
# .idea/*.iml
112-
# .idea/modules
113-
114-
# CMake
115-
cmake-build-*/
113+
# Serverless directories
114+
.serverless/
116115

117-
# Mongo Explorer plugin
118-
.idea/**/mongoSettings.xml
116+
# FuseBox cache
117+
.fusebox/
119118

120-
# File-based project format
121-
*.iws
119+
# DynamoDB Local files
120+
.dynamodb/
122121

123-
# IntelliJ
124-
out/
122+
# TernJS port file
123+
.tern-port
125124

126-
# mpeltonen/sbt-idea plugin
127-
.idea_modules/
125+
# Stores VSCode versions used for testing VSCode extensions
126+
.vscode-test
128127

129-
# JIRA plugin
130-
atlassian-ide-plugin.xml
128+
# yarn v2
129+
.yarn/cache
130+
.yarn/unplugged
131+
.yarn/build-state.yml
132+
.yarn/install-state.gz
133+
.pnp.*
131134

132-
# Cursive Clojure plugin
133-
.idea/replstate.xml
135+
### Node Patch ###
136+
# Serverless Webpack directories
137+
.webpack/
134138

135-
# Crashlytics plugin (for Android Studio and IntelliJ)
136-
com_crashlytics_export_strings.xml
137-
crashlytics.properties
138-
crashlytics-build.properties
139-
fabric.properties
139+
# Optional stylelint cache
140140

141-
# Editor-based Rest Client
142-
.idea/httpRequests
141+
# SvelteKit build / generate output
142+
.svelte-kit
143143

144-
# Android studio 3.1+ serialized cache file
145-
.idea/caches/build_file_checksums.ser
144+
### VisualStudioCode ###
145+
.vscode/*
146+
!.vscode/settings.json
147+
!.vscode/tasks.json
148+
!.vscode/launch.json
149+
!.vscode/extensions.json
150+
!.vscode/*.code-snippets
146151

147-
### WebStorm+all Patch ###
148-
# Ignores the whole .idea folder and all .iml files
149-
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
152+
# Local History for Visual Studio Code
153+
.history/
150154

151-
.idea/
155+
# Built Visual Studio Code Extensions
156+
*.vsix
152157

153-
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
158+
### VisualStudioCode Patch ###
159+
# Ignore all local history of files
160+
.history
161+
.ionide
154162

155-
*.iml
156-
modules.xml
157-
.idea/misc.xml
158-
*.ipr
163+
# Support for Project snippet scope
164+
.vscode/*.code-snippets
159165

166+
# Ignore code-workspaces
167+
*.code-workspace
160168

161-
# End of https://www.gitignore.io/api/node,webstorm+all
169+
# End of https://www.toptal.com/developers/gitignore/api/node,visualstudiocode

0 commit comments

Comments
 (0)