Skip to content

Commit f291a37

Browse files
authored
chore: clean up project (#48)
1 parent fe38a43 commit f291a37

File tree

24 files changed

+54
-1135
lines changed

24 files changed

+54
-1135
lines changed

.github/pull_request_template.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,18 @@ Please delete options that are not relevant.
2222
- [ ] New feature (non-breaking change which adds functionality)
2323
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
2424
- [ ] Documentation update
25+
- [ ] Code style update
26+
- [ ] Refactoring
27+
- [ ] Build-related changes
28+
- [ ] CI-related changes
2529

26-
## How Has This Been Tested?
30+
## How has this been tested?
2731

2832
<!--
2933
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce.
3034
-->
3135

32-
- [ ] Test A
33-
- [ ] Test B
36+
All tests pass.
3437

3538
<!--
3639
## Checklist:

.github/workflows/build.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,5 @@ jobs:
3333
- name: Build using Gradle
3434
run: ./gradlew build
3535

36-
- name: Check formatting with ktfmt
37-
run: ./gradlew ktfmtCheck
38-
3936
- name: Test using Gradle
4037
run: ./gradlew test

.gitignore

Lines changed: 8 additions & 185 deletions
Original file line numberDiff line numberDiff line change
@@ -1,190 +1,13 @@
1-
# Created by https://www.toptal.com/developers/gitignore/api/gradle
2-
# Edit at https://www.toptal.com/developers/gitignore?templates=gradle
1+
bin/
32

4-
### Gradle ###
5-
.gradle
6-
**/build/
7-
!src/**/build/
3+
.idea/
4+
.gradle/
5+
.kotlin/
86

9-
# Ignore Gradle GUI config
10-
gradle-app.setting
7+
build/
118

12-
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
13-
!gradle-wrapper.jar
14-
15-
# Avoid ignore Gradle wrappper properties
16-
!gradle-wrapper.properties
17-
18-
# Cache of project
19-
.gradletasknamecache
20-
21-
# Eclipse Gradle plugin generated files
22-
# Eclipse Core
23-
.project
24-
# JDT-specific (Eclipse Java Development Tools)
25-
.classpath
26-
27-
### Gradle Patch ###
28-
# Java heap dump
29-
*.hprof
30-
31-
# End of https://www.toptal.com/developers/gitignore/api/gradle
32-
33-
# Created by https://www.toptal.com/developers/gitignore/api/java
34-
# Edit at https://www.toptal.com/developers/gitignore?templates=java
35-
36-
### Java ###
37-
# Compiled class file
38-
*.class
39-
40-
# Log file
41-
*.log
42-
43-
# BlueJ files
44-
*.ctxt
45-
46-
# Mobile Tools for Java (J2ME)
47-
.mtj.tmp/
48-
49-
# Package Files #
50-
*.jar
51-
*.war
52-
*.nar
53-
*.ear
54-
*.zip
55-
*.tar.gz
56-
*.rar
57-
58-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
59-
hs_err_pid*
60-
replay_pid*
61-
62-
# End of https://www.toptal.com/developers/gitignore/api/java
63-
64-
# Created by https://www.toptal.com/developers/gitignore/api/intellij
65-
# Edit at https://www.toptal.com/developers/gitignore?templates=intellij
66-
67-
### Intellij ###
68-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
69-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
70-
71-
# User-specific stuff
72-
.idea/**/workspace.xml
73-
.idea/**/tasks.xml
74-
.idea/**/usage.statistics.xml
75-
.idea/**/dictionaries
76-
.idea/**/shelf
77-
78-
# AWS User-specific
79-
.idea/**/aws.xml
80-
81-
# Generated files
82-
.idea/**/contentModel.xml
83-
84-
# Sensitive or high-churn files
85-
.idea/**/dataSources/
86-
.idea/**/dataSources.ids
87-
.idea/**/dataSources.local.xml
88-
.idea/**/sqlDataSources.xml
89-
.idea/**/dynamic.xml
90-
.idea/**/uiDesigner.xml
91-
.idea/**/dbnavigator.xml
92-
93-
# Gradle
94-
.idea/**/gradle.xml
95-
.idea/**/libraries
96-
97-
# Gradle and Maven with auto-import
98-
# When using Gradle or Maven with auto-import, you should exclude module files,
99-
# since they will be recreated, and may cause churn. Uncomment if using
100-
# auto-import.
101-
# .idea/artifacts
102-
# .idea/compiler.xml
103-
# .idea/jarRepositories.xml
104-
# .idea/modules.xml
105-
# .idea/*.iml
106-
# .idea/modules
107-
# *.iml
108-
# *.ipr
109-
110-
# CMake
111-
cmake-build-*/
112-
113-
# Mongo Explorer plugin
114-
.idea/**/mongoSettings.xml
115-
116-
# File-based project format
117-
*.iws
118-
119-
# IntelliJ
120-
out/
121-
122-
# mpeltonen/sbt-idea plugin
123-
.idea_modules/
124-
125-
# JIRA plugin
126-
atlassian-ide-plugin.xml
127-
128-
# Cursive Clojure plugin
129-
.idea/replstate.xml
130-
131-
# SonarLint plugin
132-
.idea/sonarlint/
133-
134-
# Crashlytics plugin (for Android Studio and IntelliJ)
135-
com_crashlytics_export_strings.xml
136-
crashlytics.properties
137-
crashlytics-build.properties
138-
fabric.properties
139-
140-
# Editor-based Rest Client
141-
.idea/httpRequests
142-
143-
# Android studio 3.1+ serialized cache file
144-
.idea/caches/build_file_checksums.ser
145-
146-
### Intellij Patch ###
147-
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
148-
149-
# *.iml
150-
# modules.xml
151-
# .idea/misc.xml
152-
# *.ipr
153-
154-
# Sonarlint plugin
155-
# https://plugins.jetbrains.com/plugin/7973-sonarlint
156-
.idea/**/sonarlint/
157-
158-
# SonarQube Plugin
159-
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
160-
.idea/**/sonarIssues.xml
161-
162-
# Markdown Navigator plugin
163-
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
164-
.idea/**/markdown-navigator.xml
165-
.idea/**/markdown-navigator-enh.xml
166-
.idea/**/markdown-navigator/
167-
168-
# Cache file creation bug
169-
# See https://youtrack.jetbrains.com/issue/JBR-2257
170-
.idea/$CACHE_FILE$
171-
172-
# CodeStream plugin
173-
# https://plugins.jetbrains.com/plugin/12206-codestream
174-
.idea/codestream.xml
175-
176-
# Azure Toolkit for IntelliJ plugin
177-
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
178-
.idea/**/azureSettings.xml
179-
180-
# End of https://www.toptal.com/developers/gitignore/api/intellij
181-
182-
/bin
183-
184-
# PlantUML
1859
*.puml
18610

187-
/package.json
188-
/package-lock.json
189-
/node_modules/
190-
/.idea/material_theme_project_new.xml
11+
package.json
12+
package-lock.json
13+
node_modules/

.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

.idea/Cirrina.iml

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)