-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Migration to Kotlin 2.0.10 and other bumps; - ktlint removed; - additional checks added to detekt; - trailing comma added in project; - deprecated `buildDir` migrated; - version changed to 1.0.10; - instrumental test commented with link to issue; - added link to issue in detekt config; - newer version of actions.
- Loading branch information
1 parent
10ceb4f
commit 0865e18
Showing
17 changed files
with
147 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,4 @@ | |
.externalNativeBuild | ||
.cxx | ||
local.properties | ||
/.kotlin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
...dSrc/src/main/kotlin/pl/beavercoding/viewbindingdelegate/buildsrc/DependencyHandlerExt.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,101 @@ | ||
formatting: | ||
# https://detekt.dev/docs/rules/formatting/#maximumlinelength | ||
# docks are saying to keep MaxLineLength or MaximumLineLength but it is not working this way. | ||
# ExampleAdapter.onCreateViewHolder is not working when we remove option below. | ||
# Exceeded max line length (120) [MaximumLineLength] | ||
MaximumLineLength: | ||
active: true | ||
maxLineLength: 130 | ||
ArgumentListWrapping: | ||
active: true | ||
maxLineLength: 130 | ||
TrailingCommaOnCallSite: | ||
active: true | ||
TrailingCommaOnDeclarationSite: | ||
active: true | ||
IfElseBracing: | ||
active: true | ||
ParameterListSpacing: | ||
active: true | ||
TryCatchFinallySpacing: | ||
active: true | ||
TypeArgumentListSpacing: | ||
active: true | ||
TypeParameterListSpacing: | ||
active: true | ||
style: | ||
MaxLineLength: | ||
active: true | ||
maxLineLength: 130 | ||
excludeRawStrings: true | ||
AlsoCouldBeApply: | ||
active: true | ||
MandatoryBracesIfStatements: | ||
active: true | ||
consistent: true | ||
CanBeNonNullable: | ||
active: true | ||
ClassOrdering: | ||
active: true | ||
CollapsibleIfStatements: | ||
active: true | ||
ExplicitCollectionElementAccessMethod: | ||
active: true | ||
ForbiddenAnnotation: | ||
active: true | ||
MandatoryBracesLoops: | ||
active: true | ||
NewLineAtEndOfFile: | ||
active: true | ||
OptionalUnit: | ||
active: true | ||
SpacingBetweenPackageAndImports: | ||
active: true | ||
TrailingWhitespace: | ||
active: true | ||
UnderscoresInNumericLiterals: | ||
active: true | ||
UnnecessaryBackticks: | ||
active: true | ||
UnnecessaryBracesAroundTrailingLambda: | ||
active: true | ||
UnnecessaryLet: | ||
active: true | ||
UnnecessaryParentheses: | ||
active: true | ||
UnusedImports: | ||
active: true | ||
UseEmptyCounterpart: | ||
active: true | ||
UseIfEmptyOrIfBlank: | ||
active: true | ||
UseSumOfInsteadOfFlatMapSize: | ||
active: true | ||
coroutines: | ||
GlobalCoroutineUsage: | ||
active: true | ||
RedundantSuspendModifier: | ||
active: true | ||
SuspendFunWithCoroutineScopeReceiver: | ||
active: true | ||
SuspendFunWithFlowReturnType: | ||
active: true | ||
exceptions: | ||
ObjectExtendsThrowable: | ||
active: true | ||
performance: | ||
CouldBeSequence: | ||
active: true | ||
potential-bugs: | ||
CastToNullableType: | ||
active: true | ||
ElseCaseInsteadOfExhaustiveWhen: | ||
active: true | ||
MissingPackageDeclaration: | ||
active: true | ||
NullCheckOnMutableProperty: | ||
active: true | ||
PropertyUsedBeforeDeclaration: | ||
active: true | ||
UnnecessaryNotNullCheck: | ||
active: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Mon Feb 06 14:36:24 CET 2023 | ||
#Sun Aug 11 11:26:48 CEST 2024 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip | ||
distributionPath=wrapper/dists | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.