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

Commit 62cfbf3

Browse files
author
Axel Rindle
committed
Ignore Webstorm files
1 parent 919d9f2 commit 62cfbf3

File tree

1 file changed

+101
-5
lines changed

1 file changed

+101
-5
lines changed

.gitignore

Lines changed: 101 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Created by https://www.gitignore.io/api/node
2+
# Created by https://www.gitignore.io/api/node,webstorm+all
33

44
### Node ###
55
# Logs
@@ -24,7 +24,7 @@ coverage
2424
# nyc test coverage
2525
.nyc_output
2626

27-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
27+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
2828
.grunt
2929

3030
# Bower dependency directory (https://bower.io/)
@@ -33,14 +33,14 @@ bower_components
3333
# node-waf configuration
3434
.lock-wscript
3535

36-
# Compiled binary addons (http://nodejs.org/api/addons.html)
36+
# Compiled binary addons (https://nodejs.org/api/addons.html)
3737
build/Release
3838

3939
# Dependency directories
4040
node_modules/
4141
jspm_packages/
4242

43-
# Typescript v1 declaration files
43+
# TypeScript v1 declaration files
4444
typings/
4545

4646
# Optional npm cache directory
@@ -61,5 +61,101 @@ typings/
6161
# dotenv environment variables file
6262
.env
6363

64+
# parcel-bundler cache (https://parceljs.org/)
65+
.cache
6466

65-
# End of https://www.gitignore.io/api/node
67+
# next.js build output
68+
.next
69+
70+
# nuxt.js build output
71+
.nuxt
72+
73+
# vuepress build output
74+
.vuepress/dist
75+
76+
# Serverless directories
77+
.serverless
78+
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
82+
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-*/
116+
117+
# Mongo Explorer plugin
118+
.idea/**/mongoSettings.xml
119+
120+
# File-based project format
121+
*.iws
122+
123+
# IntelliJ
124+
out/
125+
126+
# mpeltonen/sbt-idea plugin
127+
.idea_modules/
128+
129+
# JIRA plugin
130+
atlassian-ide-plugin.xml
131+
132+
# Cursive Clojure plugin
133+
.idea/replstate.xml
134+
135+
# Crashlytics plugin (for Android Studio and IntelliJ)
136+
com_crashlytics_export_strings.xml
137+
crashlytics.properties
138+
crashlytics-build.properties
139+
fabric.properties
140+
141+
# Editor-based Rest Client
142+
.idea/httpRequests
143+
144+
# Android studio 3.1+ serialized cache file
145+
.idea/caches/build_file_checksums.ser
146+
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
150+
151+
.idea/
152+
153+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
154+
155+
*.iml
156+
modules.xml
157+
.idea/misc.xml
158+
*.ipr
159+
160+
161+
# End of https://www.gitignore.io/api/node,webstorm+all

0 commit comments

Comments
 (0)