Skip to content

Commit 89e1f97

Browse files
committed
code clean up and ktlint experiments
1 parent bfa32d4 commit 89e1f97

19 files changed

Lines changed: 29 additions & 1212 deletions

File tree

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
indent_style = tab
5+
indent_size = 4
6+
7+
[*.{kt,kts}]
8+
max_line_length = 100
9+
10+
11+
[kotlin]
12+
kotlin_comments.indent_size = tab
13+
kotlin_comments.wrap_text = true

.gitignore

Lines changed: 14 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,6 @@
1-
output-metadata.json
2-
.idea/deploymentTargetDropDown.xml
3-
.idea/misc.xml
4-
.idea/render.experimental.xml
5-
/captures
6-
/ktlint
7-
ktfmt-*.jar
81
/app/debug
92
/app/release
10-
package-list
11-
12-
# Built application files
13-
# *.apk
14-
# *.aar
15-
# *.ap_
16-
# *.aab
17-
18-
# Files for the ART/Dalvik VM
19-
*.dex
20-
21-
# Java class files
22-
*.class
23-
24-
# Generated files
25-
bin/
26-
gen/
27-
out/
28-
# Uncomment the following line in case you need and you don't have the release build type files in your app
29-
# release/
3+
/documentation/reference
304

315
# Gradle files
326
.gradle/
@@ -35,66 +9,29 @@ build/
359
# Local configuration file (sdk path, etc)
3610
local.properties
3711

38-
# Proguard folder generated by Eclipse
39-
proguard/
40-
41-
# Log Files
12+
# Log/OS Files
4213
*.log
4314

44-
# Android Studio Navigation editor temp files
45-
.navigation/
46-
47-
# Android Studio captures folder
15+
# Android Studio generated files and folders
4816
captures/
17+
.externalNativeBuild/
18+
.cxx/
19+
*.apk
20+
output.json
4921

5022
# IntelliJ
5123
*.iml
52-
.idea/workspace.xml
53-
.idea/tasks.xml
54-
.idea/gradle.xml
55-
.idea/assetWizardSettings.xml
56-
.idea/dictionaries
57-
.idea/libraries
58-
.idea/jarRepositories.xml
59-
# Android Studio 3 in .gitignore file.
60-
.idea/caches
61-
.idea/modules.xml
62-
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
63-
.idea/navEditor.xml
24+
.idea/
25+
misc.xml
26+
deploymentTargetDropDown.xml
27+
render.experimental.xml
6428

6529
# Keystore files
66-
# Uncomment the following lines if you do not want to check your keystore files in.
67-
#*.jks
68-
#*.keystore
69-
70-
# External native build folder generated in Android Studio 2.2 and later
71-
.externalNativeBuild
72-
.cxx/
30+
*.jks
31+
*.keystore
7332

7433
# Google Services (e.g. APIs or Firebase)
75-
# google-services.json
76-
77-
# Freeline
78-
freeline.py
79-
freeline/
80-
freeline_project_description.json
81-
82-
# fastlane
83-
fastlane/report.xml
84-
fastlane/Preview.html
85-
fastlane/screenshots
86-
fastlane/test_output
87-
fastlane/readme.md
88-
89-
# Version control
90-
vcs.xml
91-
92-
# lint
93-
lint/intermediates/
94-
lint/generated/
95-
lint/outputs/
96-
lint/tmp/
97-
# lint/reports/
34+
google-services.json
9835

9936
# Android Profiling
10037
*.hprof

.idea/.name

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

.idea/codeStyles/Project.xml

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

.idea/codeStyles/codeStyleConfig.xml

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

.idea/compiler.xml

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

0 commit comments

Comments
 (0)