Skip to content

Commit 16b801f

Browse files
committedDec 31, 2022
feat(plugin): ready to code
1 parent 5a0b80b commit 16b801f

File tree

1 file changed

+119
-0
lines changed

1 file changed

+119
-0
lines changed
 

‎.gitignore

+119
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
# User-specific stuff
2+
.idea/
3+
4+
*.iml
5+
*.ipr
6+
*.iws
7+
8+
# IntelliJ
9+
out/
10+
bin/
11+
# mpeltonen/sbt-idea plugin
12+
.idea_modules/
13+
14+
# JIRA plugin
15+
atlassian-ide-plugin.xml
16+
17+
# Compiled class file
18+
*.class
19+
20+
# Log file
21+
*.log
22+
23+
# BlueJ files
24+
*.ctxt
25+
26+
# Package Files #
27+
*.jar
28+
*.war
29+
*.nar
30+
*.ear
31+
*.zip
32+
*.tar.gz
33+
*.rar
34+
35+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
36+
hs_err_pid*
37+
38+
*~
39+
40+
# temporary files which can be created if a process still has a handle open of a deleted file
41+
.fuse_hidden*
42+
43+
# KDE directory preferences
44+
.directory
45+
46+
# Linux trash folder which might appear on any partition or disk
47+
.Trash-*
48+
49+
# .nfs files are created when an open file is removed but is still being accessed
50+
.nfs*
51+
52+
# General
53+
.DS_Store
54+
.AppleDouble
55+
.LSOverride
56+
57+
# Icon must end with two \r
58+
Icon
59+
60+
# Thumbnails
61+
._*
62+
63+
# Files that might appear in the root of a volume
64+
.DocumentRevisions-V100
65+
.fseventsd
66+
.Spotlight-V100
67+
.TemporaryItems
68+
.Trashes
69+
.VolumeIcon.icns
70+
.com.apple.timemachine.donotpresent
71+
72+
# Directories potentially created on remote AFP share
73+
.AppleDB
74+
.AppleDesktop
75+
Network Trash Folder
76+
Temporary Items
77+
.apdisk
78+
79+
# Windows thumbnail cache files
80+
Thumbs.db
81+
Thumbs.db:encryptable
82+
ehthumbs.db
83+
ehthumbs_vista.db
84+
85+
# Dump file
86+
*.stackdump
87+
88+
# Folder config file
89+
[Dd]esktop.ini
90+
91+
# Recycle Bin used on file shares
92+
$RECYCLE.BIN/
93+
94+
# Windows Installer files
95+
*.cab
96+
*.msi
97+
*.msix
98+
*.msm
99+
*.msp
100+
101+
# Windows shortcuts
102+
*.lnk
103+
104+
.gradle
105+
build/
106+
107+
# Ignore Gradle GUI config
108+
gradle-app.setting
109+
110+
# Cache of project
111+
.gradletasknamecache
112+
113+
**/build/
114+
115+
# Common working directory
116+
run/
117+
118+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
119+
!gradle-wrapper.jar

0 commit comments

Comments
 (0)