Skip to content

Commit 40c73ed

Browse files
authored
Merge pull request #2 from zinja-coder/optimization
Optimization v2.0.0
2 parents 116f3de + 168b3d8 commit 40c73ed

File tree

5 files changed

+2339
-742
lines changed

5 files changed

+2339
-742
lines changed

.gitignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,53 @@ wheels/
1010
# Virtual environments
1111
.venv
1212

13+
14+
15+
target/
16+
!.mvn/wrapper/maven-wrapper.jar
17+
!**/src/main/**/target/
18+
!**/src/test/**/target/
19+
20+
### IntelliJ IDEA ###
21+
.idea/modules.xml
22+
.idea/jarRepositories.xml
23+
.idea/compiler.xml
24+
.idea/libraries/
25+
*.iws
26+
*.iml
27+
*.ipr
28+
29+
### Eclipse ###
30+
.apt_generated
31+
.classpath
32+
.factorypath
33+
.project
34+
.settings
35+
.springBeans
36+
.sts4-cache
37+
38+
### NetBeans ###
39+
/nbproject/private/
40+
/nbbuild/
41+
/dist/
42+
/nbdist/
43+
/.nb-gradle/
44+
build/
45+
!**/src/main/**/build/
46+
!**/src/test/**/build/
47+
48+
### apktool workspace ###
49+
50+
**workspace**
51+
52+
### VS Code ###
53+
.vscode/
54+
55+
### Mac OS ###
56+
.DS_Store
57+
58+
### RELEASE ###
59+
target/
60+
61+
### dependecy ###
62+
lib/

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"cSpell.words": [
3+
"levelname"
4+
]
5+
}

0 commit comments

Comments
 (0)