Skip to content

Commit 36a3c40

Browse files
committed
chore(git): update .gitignore
1 parent 7c72708 commit 36a3c40

File tree

1 file changed

+34
-5
lines changed

1 file changed

+34
-5
lines changed

.gitignore

+34-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Created by https://www.toptal.com/developers/gitignore/api/windows,linux,macos,node,react,visualstudiocode,intellij
32
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,linux,macos,node,react,visualstudiocode,intellij
43

@@ -66,6 +65,9 @@ atlassian-ide-plugin.xml
6665
# Cursive Clojure plugin
6766
.idea/replstate.xml
6867

68+
# SonarLint plugin
69+
.idea/sonarlint/
70+
6971
# Crashlytics plugin (for Android Studio and IntelliJ)
7072
com_crashlytics_export_strings.xml
7173
crashlytics.properties
@@ -108,6 +110,10 @@ fabric.properties
108110
# https://plugins.jetbrains.com/plugin/12206-codestream
109111
.idea/codestream.xml
110112

113+
# Azure Toolkit for IntelliJ plugin
114+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
115+
.idea/**/azureSettings.xml
116+
111117
### Linux ###
112118
*~
113119

@@ -152,6 +158,10 @@ Network Trash Folder
152158
Temporary Items
153159
.apdisk
154160

161+
### macOS Patch ###
162+
# iCloud generated files
163+
*.icloud
164+
155165
### Node ###
156166
# Logs
157167
logs
@@ -209,6 +219,9 @@ web_modules/
209219
# Optional eslint cache
210220
.eslintcache
211221

222+
# Optional stylelint cache
223+
.stylelintcache
224+
212225
# Microbundle cache
213226
.rpt2_cache/
214227
.rts2_cache_cjs/
@@ -224,10 +237,12 @@ web_modules/
224237
# Yarn Integrity file
225238
.yarn-integrity
226239

227-
# dotenv environment variables file
240+
# dotenv environment variable files
228241
.env
229-
.env.test
230-
.env.production
242+
.env.development.local
243+
.env.test.local
244+
.env.production.local
245+
.env.local
231246

232247
# parcel-bundler cache (https://parceljs.org/)
233248
.cache
@@ -250,6 +265,12 @@ dist
250265
# vuepress build output
251266
.vuepress/dist
252267

268+
# vuepress v2.x temp and cache directory
269+
.temp
270+
271+
# Docusaurus cache and generated files
272+
.docusaurus
273+
253274
# Serverless directories
254275
.serverless/
255276

@@ -276,6 +297,11 @@ dist
276297
# Serverless Webpack directories
277298
.webpack/
278299

300+
# Optional stylelint cache
301+
302+
# SvelteKit build / generate output
303+
.svelte-kit
304+
279305
### react ###
280306
.DS_*
281307
**/*.backup.*
@@ -295,11 +321,14 @@ sketch
295321
!.vscode/tasks.json
296322
!.vscode/launch.json
297323
!.vscode/extensions.json
298-
*.code-workspace
324+
!.vscode/*.code-snippets
299325

300326
# Local History for Visual Studio Code
301327
.history/
302328

329+
# Built Visual Studio Code Extensions
330+
*.vsix
331+
303332
### VisualStudioCode Patch ###
304333
# Ignore all local history of files
305334
.history

0 commit comments

Comments
 (0)