Skip to content

Commit 6a6c879

Browse files
committedFeb 7, 2025
updated idea
1 parent 48c3afb commit 6a6c879

File tree

4 files changed

+239
-0
lines changed

4 files changed

+239
-0
lines changed
 

‎.gitignore

+213
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,213 @@
1+
### JetBrains template
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
3+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
4+
5+
# User-specific stuff
6+
.idea/**/workspace.xml
7+
.idea/**/tasks.xml
8+
.idea/**/usage.statistics.xml
9+
.idea/**/dictionaries
10+
.idea/**/shelf
11+
12+
# AWS User-specific
13+
.idea/**/aws.xml
14+
15+
# Generated files
16+
.idea/**/contentModel.xml
17+
18+
# Sensitive or high-churn files
19+
.idea/**/dataSources/
20+
.idea/**/dataSources.ids
21+
.idea/**/dataSources.local.xml
22+
.idea/**/sqlDataSources.xml
23+
.idea/**/dynamic.xml
24+
.idea/**/uiDesigner.xml
25+
.idea/**/dbnavigator.xml
26+
27+
# Gradle
28+
.idea/**/gradle.xml
29+
.idea/**/libraries
30+
31+
# Gradle and Maven with auto-import
32+
# When using Gradle or Maven with auto-import, you should exclude module files,
33+
# since they will be recreated, and may cause churn. Uncomment if using
34+
# auto-import.
35+
# .idea/artifacts
36+
# .idea/compiler.xml
37+
# .idea/jarRepositories.xml
38+
# .idea/modules.xml
39+
# .idea/*.iml
40+
# .idea/modules
41+
# *.iml
42+
# *.ipr
43+
44+
# CMake
45+
cmake-build-*/
46+
47+
# Mongo Explorer plugin
48+
.idea/**/mongoSettings.xml
49+
50+
# File-based project format
51+
*.iws
52+
53+
# IntelliJ
54+
out/
55+
56+
# mpeltonen/sbt-idea plugin
57+
.idea_modules/
58+
59+
# JIRA plugin
60+
atlassian-ide-plugin.xml
61+
62+
# Cursive Clojure plugin
63+
.idea/replstate.xml
64+
65+
# SonarLint plugin
66+
.idea/sonarlint/
67+
68+
# Crashlytics plugin (for Android Studio and IntelliJ)
69+
com_crashlytics_export_strings.xml
70+
crashlytics.properties
71+
crashlytics-build.properties
72+
fabric.properties
73+
74+
# Editor-based Rest Client
75+
.idea/httpRequests
76+
77+
# Android studio 3.1+ serialized cache file
78+
.idea/caches/build_file_checksums.ser
79+
80+
### Node template
81+
# Logs
82+
logs
83+
*.log
84+
npm-debug.log*
85+
yarn-debug.log*
86+
yarn-error.log*
87+
lerna-debug.log*
88+
.pnpm-debug.log*
89+
90+
# Diagnostic reports (https://nodejs.org/api/report.html)
91+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
92+
93+
# Runtime data
94+
pids
95+
*.pid
96+
*.seed
97+
*.pid.lock
98+
99+
# Directory for instrumented libs generated by jscoverage/JSCover
100+
lib-cov
101+
102+
# Coverage directory used by tools like istanbul
103+
coverage
104+
*.lcov
105+
106+
# nyc test coverage
107+
.nyc_output
108+
109+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
110+
.grunt
111+
112+
# Bower dependency directory (https://bower.io/)
113+
bower_components
114+
115+
# node-waf configuration
116+
.lock-wscript
117+
118+
# Compiled binary addons (https://nodejs.org/api/addons.html)
119+
build/Release
120+
121+
# Dependency directories
122+
node_modules/
123+
jspm_packages/
124+
125+
# Snowpack dependency directory (https://snowpack.dev/)
126+
web_modules/
127+
128+
# TypeScript cache
129+
*.tsbuildinfo
130+
131+
# Optional npm cache directory
132+
.npm
133+
134+
# Optional eslint cache
135+
.eslintcache
136+
137+
# Optional stylelint cache
138+
.stylelintcache
139+
140+
# Microbundle cache
141+
.rpt2_cache/
142+
.rts2_cache_cjs/
143+
.rts2_cache_es/
144+
.rts2_cache_umd/
145+
146+
# Optional REPL history
147+
.node_repl_history
148+
149+
# Output of 'npm pack'
150+
*.tgz
151+
152+
# Yarn Integrity file
153+
.yarn-integrity
154+
155+
# dotenv environment variable files
156+
.env
157+
.env.development.local
158+
.env.test.local
159+
.env.production.local
160+
.env.local
161+
162+
# parcel-bundler cache (https://parceljs.org/)
163+
.cache
164+
.parcel-cache
165+
166+
# Next.js build output
167+
.next
168+
out
169+
170+
# Nuxt.js build / generate output
171+
.nuxt
172+
dist
173+
174+
# Gatsby files
175+
.cache/
176+
# Comment in the public line in if your project uses Gatsby and not Next.js
177+
# https://nextjs.org/blog/next-9-1#public-directory-support
178+
# public
179+
180+
# vuepress build output
181+
.vuepress/dist
182+
183+
# vuepress v2.x temp and cache directory
184+
.temp
185+
.cache
186+
187+
# Docusaurus cache and generated files
188+
.docusaurus
189+
190+
# Serverless directories
191+
.serverless/
192+
193+
# FuseBox cache
194+
.fusebox/
195+
196+
# DynamoDB Local files
197+
.dynamodb/
198+
199+
# TernJS port file
200+
.tern-port
201+
202+
# Stores VSCode versions used for testing VSCode extensions
203+
.vscode-test
204+
205+
# yarn v2
206+
.yarn/cache
207+
.yarn/unplugged
208+
.yarn/build-state.yml
209+
.yarn/install-state.gz
210+
.pnp.*
211+
212+
package-lock.json
213+

‎.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.idea/postgres-js.iml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.