Skip to content

Commit 832479d

Browse files
authored
Update .gitignore
1 parent f9abb44 commit 832479d

1 file changed

Lines changed: 186 additions & 1 deletion

File tree

.gitignore

Lines changed: 186 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,187 @@
1+
# =============== Java =================
2+
# Compiled class file
3+
*.class
4+
5+
# BlueJ files
6+
*.ctxt
7+
8+
# Mobile Tools for Java (J2ME)
9+
.mtj.tmp/
10+
11+
# Package Files #
12+
*.jar
13+
!/stack/keycloak/plugins/*.jar
14+
*.war
15+
*.nar
16+
*.ear
17+
*.zip
18+
*.tar.gz
19+
*.rar
20+
21+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
22+
hs_err_pid*
23+
replay_pid*
24+
25+
# =============== Maven ================
26+
target/
27+
pom.xml.tag
28+
pom.xml.releaseBackup
29+
pom.xml.versionsBackup
30+
pom.xml.next
31+
release.properties
32+
dependency-reduced-pom.xml
33+
buildNumber.properties
34+
.mvn/timing.properties
35+
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
36+
.mvn/wrapper/maven-wrapper.jar
37+
38+
# ================ Node ===============
39+
node_modules
40+
dist/
41+
.vite
42+
43+
# Diagnostic reports (https://nodejs.org/api/report.html)
44+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
45+
46+
# Runtime data
47+
pids
48+
*.pid
49+
*.seed
50+
*.pid.lock
51+
52+
# Directory for instrumented libs generated by jscoverage/JSCover
53+
lib-cov
54+
55+
# Coverage directory used by tools like istanbul
56+
coverage
57+
*.lcov
58+
59+
# nyc test coverage
60+
.nyc_output
61+
62+
# node-waf configuration
63+
.lock-wscript
64+
65+
# Compiled binary addons (https://nodejs.org/api/addons.html)
66+
build/Release
67+
68+
# Dependency directories
69+
jspm_packages/
70+
71+
# TypeScript v1 declaration files
72+
typings/
73+
74+
# TypeScript cache
75+
*.tsbuildinfo
76+
cache/
77+
78+
# Optional npm cache directory
79+
.npm
80+
81+
# Optional eslint cache
82+
.eslintcache
83+
84+
# Optional REPL history
85+
.node_repl_history
86+
87+
# Output of 'npm pack'
88+
*.tgz
89+
90+
# Yarn Integrity file
91+
.yarn-integrity
92+
93+
# parcel-bundler cache (https://parceljs.org/)
94+
.cache
95+
96+
# Next.js build output
97+
.next
98+
99+
# Nuxt.js build / generate output
100+
.nuxt
101+
102+
# Gatsby files
103+
.cache/
104+
105+
# vuepress build output
106+
.vuepress/dist
107+
108+
# ================ Other =============
109+
# macOS
110+
.DS_Store
111+
112+
# Environment files
113+
.env.local
114+
.env.*.local
115+
116+
# Log files
117+
*.log
118+
npm-debug.log*
119+
yarn-debug.log*
120+
yarn-error.log*
121+
pnpm-debug.log*
122+
lerna-debug.log*
123+
logs
124+
125+
# ============== IDE specific settings ================
126+
127+
### Eclipse
128+
# Covers Eclipse, based on https://www.toptal.com/developers/gitignore/api/eclipse , stripped to relevant java based rules
129+
.metadata
130+
bin/
131+
tmp/
132+
*.tmp
133+
*.bak
134+
*.swp
135+
*~.nib
136+
local.properties
137+
.settings/
138+
.classpath
139+
.loadpath
140+
.recommenders
141+
.project
142+
# External tool builders
143+
.externalToolBuilders/
144+
# Locally stored "Eclipse launch configurations"
145+
*.launch
146+
# Java annotation processor (APT)
147+
.factorypath
148+
# STS (Spring Tool Suite)
149+
.springBeans
150+
# Code Recommenders
151+
.recommenders/
152+
# Annotation Processing
153+
.apt_generated/
154+
.apt_generated_test/
155+
156+
# Spring Boot Tooling
157+
.sts4-cache/
158+
159+
# PMD Plugin
160+
.pmd
161+
.ruleset
162+
### End of Eclipse
163+
164+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
1165
.idea
2-
tmp
166+
*.iml
167+
168+
# Covers Netbeans:
169+
**/nbproject/private/
170+
**/nbproject/Makefile-*.mk
171+
**/nbproject/Package-*.bash
172+
nbbuild/
173+
nbdist/
174+
.nb-gradle/
175+
176+
# Covers VSCode
177+
.vscode/*
178+
!.vscode/tasks.json
179+
*.code-workspace
180+
.history/
181+
182+
# Covers other editors
183+
*.suo
184+
*.ntvs*
185+
*.njsproj
186+
*.sln
187+
*.sw?

0 commit comments

Comments
 (0)