Skip to content

Commit 8e96449

Browse files
committed
feat: initial commit
0 parents  commit 8e96449

File tree

26 files changed

+3161
-0
lines changed

26 files changed

+3161
-0
lines changed

.editorconfig

Lines changed: 1164 additions & 0 deletions
Large diffs are not rendered by default.

.gitignore

Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
######################
2+
# Node
3+
######################
4+
/node/
5+
node_tmp/
6+
node_modules/
7+
npm-debug.log.*
8+
/.awcache/*
9+
/.cache-loader/*
10+
11+
######################
12+
# SASS
13+
######################
14+
.sass-cache/
15+
16+
######################
17+
# Eclipse
18+
######################
19+
*.pydevproject
20+
.project
21+
.metadata
22+
tmp/
23+
tmp/**/*
24+
*.tmp
25+
*.bak
26+
*.swp
27+
*~.nib
28+
local.properties
29+
.classpath
30+
.settings/
31+
.loadpath
32+
.factorypath
33+
34+
# External tool builders
35+
.externalToolBuilders/**
36+
37+
# Locally stored "Eclipse launch configurations"
38+
*.launch
39+
40+
# CDT-specific
41+
.cproject
42+
43+
# PDT-specific
44+
.buildpath
45+
46+
######################
47+
# Intellij
48+
######################
49+
.idea/*
50+
!.idea/codeStyles
51+
!.idea/dictionaries
52+
!.idea/inspectionProfiles
53+
54+
*.iml
55+
*.iws
56+
*.ipr
57+
*.ids
58+
*.orig
59+
classes/
60+
out/
61+
62+
######################
63+
# Visual Studio Code
64+
######################
65+
.vscode/
66+
67+
######################
68+
# Maven
69+
######################
70+
/log/
71+
/target/
72+
73+
######################
74+
# Gradle
75+
######################
76+
.gradle/
77+
/build/
78+
79+
######################
80+
# Package Files
81+
######################
82+
*.jar
83+
*.war
84+
*.ear
85+
*.db
86+
87+
######################
88+
# Windows
89+
######################
90+
# Windows image file caches
91+
Thumbs.db
92+
93+
# Folder config file
94+
Desktop.ini
95+
96+
######################
97+
# Mac OSX
98+
######################
99+
.DS_Store
100+
.svn
101+
102+
# Thumbnails
103+
._*
104+
105+
# Files that might appear on external disk
106+
.Spotlight-V100
107+
.Trashes
108+
109+
######################
110+
# Directories
111+
######################
112+
/bin/
113+
/deploy/
114+
115+
######################
116+
# Logs
117+
######################
118+
*.log*
119+
120+
######################
121+
# Others
122+
######################
123+
*.class
124+
*.*~
125+
*~
126+
.directory
127+
.merge_file*
128+
129+
######################
130+
# Gradle Wrapper
131+
######################
132+
!gradle/wrapper/gradle-wrapper.jar
133+
134+
######################
135+
# Maven Wrapper
136+
######################
137+
!.mvn/wrapper/maven-wrapper.jar

0 commit comments

Comments
 (0)