-
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.
- Loading branch information
Showing
25 changed files
with
139 additions
and
51 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,115 @@ | ||
TwitterCompose: | ||
#TwitterCompose: | ||
# ContentEmitterReturningValues: | ||
# active: true | ||
# ModifierComposable: | ||
# active: true | ||
# ModifierMissing: | ||
# active: true | ||
# ModifierReused: | ||
# active: true | ||
# ModifierWithoutDefault: | ||
# active: true | ||
# MultipleEmitters: | ||
# active: true | ||
# MutableParams: | ||
# active: true | ||
# ComposableNaming: | ||
# active: true | ||
# ComposableParamOrder: | ||
# active: true | ||
# PreviewPublic: | ||
# active: false # Triggering even for private methods | ||
# RememberMissing: | ||
# active: true | ||
# ViewModelForwarding: | ||
# active: true | ||
# ViewModelInjection: | ||
# active: true | ||
Compose: | ||
ComposableAnnotationNaming: | ||
active: true | ||
ComposableNaming: | ||
active: true | ||
# -- You can optionally disable the checks in this rule for regex matches against the composable name (e.g. molecule presenters) | ||
# allowedComposableFunctionNames: .*Presenter,.*MoleculePresenter | ||
ComposableParamOrder: | ||
active: true | ||
# -- You can optionally have a list of types to be treated as lambdas (e.g. typedefs or fun interfaces not picked up automatically) | ||
# treatAsLambda: MyLambdaType | ||
CompositionLocalAllowlist: | ||
active: true | ||
# -- You can optionally define a list of CompositionLocals that are allowed here | ||
# allowedCompositionLocals: LocalSomething,LocalSomethingElse | ||
CompositionLocalNaming: | ||
active: true | ||
ContentEmitterReturningValues: | ||
active: true | ||
# -- You can optionally add your own composables here | ||
# contentEmitters: MyComposable,MyOtherComposable | ||
DefaultsVisibility: | ||
active: true | ||
LambdaParameterInRestartableEffect: | ||
active: true | ||
# -- You can optionally have a list of types to be treated as lambdas (e.g. typedefs or fun interfaces not picked up automatically) | ||
# treatAsLambda: MyLambdaType | ||
ModifierClickableOrder: | ||
active: true | ||
# -- You can optionally add your own Modifier types | ||
# customModifiers: BananaModifier,PotatoModifier | ||
ModifierComposable: | ||
active: true | ||
# -- You can optionally add your own Modifier types | ||
# customModifiers: BananaModifier,PotatoModifier | ||
ModifierMissing: | ||
active: true | ||
# -- You can optionally control the visibility of which composables to check for here | ||
# -- Possible values are: `only_public`, `public_and_internal` and `all` (default is `only_public`) | ||
# checkModifiersForVisibility: only_public | ||
# -- You can optionally add your own Modifier types | ||
# customModifiers: BananaModifier,PotatoModifier | ||
ModifierNaming: | ||
active: true | ||
# -- You can optionally add your own Modifier types | ||
# customModifiers: BananaModifier,PotatoModifier | ||
ModifierNotUsedAtRoot: | ||
active: true | ||
# -- You can optionally add your own composables here | ||
# contentEmitters: MyComposable,MyOtherComposable | ||
# -- You can optionally add your own Modifier types | ||
# customModifiers: BananaModifier,PotatoModifier | ||
ModifierReused: | ||
active: true | ||
# -- You can optionally add your own Modifier types | ||
# customModifiers: BananaModifier,PotatoModifier | ||
ModifierWithoutDefault: | ||
active: true | ||
MultipleEmitters: | ||
active: true | ||
# -- You can optionally add your own composables here that will count as content emitters | ||
# contentEmitters: MyComposable,MyOtherComposable | ||
# -- You can add composables here that you don't want to count as content emitters (e.g. custom dialogs or modals) | ||
# contentEmittersDenylist: MyNonEmitterComposable | ||
MutableParams: | ||
active: true | ||
ComposableNaming: | ||
MutableStateParam: | ||
active: true | ||
ComposableParamOrder: | ||
PreviewAnnotationNaming: | ||
active: true | ||
PreviewPublic: | ||
active: false # Triggering even for private methods | ||
active: true | ||
RememberMissing: | ||
active: true | ||
RememberContentMissing: | ||
active: true | ||
UnstableCollections: | ||
active: false # with strong skipping enabled this is not necessary | ||
ViewModelForwarding: | ||
active: true | ||
# -- You can optionally use this rule on things other than types ending in "ViewModel" or "Presenter" (which are the defaults). You can add your own via a regex here: | ||
# allowedStateHolderNames: .*ViewModel,.*Presenter | ||
# -- You can optionally add an allowlist for Composable names that won't be affected by this rule | ||
# allowedForwarding: .*Content,.*FancyStuff | ||
ViewModelInjection: | ||
active: true | ||
active: true | ||
# -- You can optionally add your own ViewModel factories here | ||
# viewModelFactories: hiltViewModel,potatoViewModel |
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
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 |
---|---|---|
|
@@ -7,4 +7,4 @@ data class WebImageDomain( | |
val width: Int = 0, | ||
val height: Int = 0, | ||
val url: String = "", | ||
) | ||
) |
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 |
---|---|---|
|
@@ -15,5 +15,4 @@ class GetArtObjectByIdUseCase @Inject constructor( | |
artRepository.getArtById(id.replace("en-", "")) | ||
} | ||
} | ||
|
||
} |
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
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
Oops, something went wrong.