Skip to content

Commit 66bd691

Browse files
authored
chore: Sync root level scripts, files and metadata from kmp-project-template (#2569)
1 parent 8df3b9a commit 66bd691

146 files changed

Lines changed: 16524 additions & 4 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ iosApp/iosApp.xcworkspace/*
2828
iosApp/iosApp.xcodeproj/*
2929
!iosApp/iosApp.xcodeproj/project.pbxproj
3030
cmp-shared/mifospay-shared.podspec
31+
cmp-ios/Pods/*
32+
cmp-ios/Podfile.lock
3133

3234
# Eclipse project files
3335
.classpath
@@ -60,19 +62,32 @@ app/manifest-merger-release-report.txt
6062
cmp-android/src/prod/google-services.json
6163

6264
#*.keystore
65+
keystores/*.keystore
66+
keystores/*.jks
67+
*.keystore
68+
*.jks
6369

6470
version.txt
6571
fastlane/report.xml
6672
firebaseAppDistributionServiceCredentialsFile.json
6773
playStorePublishServiceCredentialsFile.json
6874

75+
# Secrets and Configuration
76+
secrets/
77+
/secrets.properties
78+
!secrets/.gitkeep
79+
PROJECT_SETUP_INFO.txt
80+
6981
# Ruby stuff we don't care about
7082
.bundle/
7183
vendor/
72-
secrets/
7384

7485
# Sync Log File
7586
*.log
87+
/build-logic/convention/secrets-backup/
88+
89+
# Backup files created by scripts
90+
*.bak
7691

7792
.idea/
7893

@@ -82,6 +97,5 @@ mifosng-android/src/main/assets/crashlytics-build.properties
8297
android-client.iml
8398
mifosng-android/mifosng-android.iml
8499
*.hprof
85-
/secrets.properties
86100
.kotlin/
87101
build-logic/convention/bin/

CODE_OF_CONDUCT.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Contributor Covenant Code of Conduct
32

43
## Our Pledge
@@ -116,7 +115,8 @@ community.
116115

117116
## Attribution
118117

119-
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org/),
118+
This Code of Conduct is adapted from
119+
the [Contributor Covenant](https://www.contributor-covenant.org/),
120120
version 2.1, available at
121121
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
122122

@@ -128,7 +128,11 @@ For answers to common questions about this code of conduct, see the FAQ at
128128
[https://www.contributor-covenant.org/translations][translations].
129129

130130
[homepage]: https://www.contributor-covenant.org
131+
131132
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
133+
132134
[Mozilla CoC]: https://github.com/mozilla/diversity
135+
133136
[FAQ]: https://www.contributor-covenant.org/faq
137+
134138
[translations]: https://www.contributor-covenant.org/translations

config/detekt/detekt.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,7 @@ naming:
432432
"**/androidInstrumentedTest/**",
433433
"**/jsTest/**",
434434
"**/iosTest/**",
435+
"**/generated/**",
435436
]
436437
functionPattern: "[a-z][a-zA-Z0-9]*"
437438
excludeClassPattern: "$^"
@@ -450,6 +451,17 @@ naming:
450451
MatchingDeclarationName:
451452
active: true
452453
mustBeFirst: true
454+
excludes:
455+
[
456+
"**/*.android.*",
457+
"**/*.desktop.*",
458+
"**/*.js.*",
459+
"**/*.native.*",
460+
"**/*.jvm.*",
461+
"**/*.linux.*",
462+
"**/*.macos.*",
463+
"**/*.wasmJs.*",
464+
]
453465
MemberNameEqualsClassName:
454466
active: true
455467
ignoreOverridden: true
@@ -465,6 +477,10 @@ naming:
465477
PackageNaming:
466478
active: true
467479
packagePattern: '[a-z]+(\.[a-z][A-Za-z0-9]*)*'
480+
excludes:
481+
[
482+
"**/generated/**",
483+
]
468484
TopLevelPropertyNaming:
469485
active: true
470486
constantPattern: "[A-Z][_A-Z0-9]*"

core-base/analytics/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

0 commit comments

Comments
 (0)