Update dependency io.nlopez.compose.rules:detekt to v0.6.6 - #238
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
from
December 3, 2025 15:39
e53341a to
342394c
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
from
December 4, 2025 17:13
342394c to
1f3c279
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
from
December 12, 2025 10:15
1f3c279 to
f883b5b
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
4 times, most recently
from
December 19, 2025 02:06
67544c9 to
93125a3
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
3 times, most recently
from
January 22, 2026 12:51
6e61b95 to
3f63233
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
3 times, most recently
from
January 27, 2026 10:35
b12d836 to
75f7bcb
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
3 times, most recently
from
January 29, 2026 20:30
3741ac2 to
c01e967
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
2 times, most recently
from
February 10, 2026 19:30
0d151cc to
6c3ff33
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
from
February 18, 2026 15:22
6c3ff33 to
dc2ec69
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
5 times, most recently
from
March 5, 2026 15:54
b6e577b to
37a9c79
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
from
March 16, 2026 21:35
37a9c79 to
dc1c833
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
2 times, most recently
from
April 29, 2026 20:12
139623e to
fd3771d
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
4 times, most recently
from
May 14, 2026 07:58
3ac4c86 to
150e238
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
from
May 19, 2026 09:00
150e238 to
455b822
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
from
May 28, 2026 06:32
455b822 to
7612b4c
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
3 times, most recently
from
June 8, 2026 19:09
8d232f4 to
b512ff2
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
2 times, most recently
from
June 14, 2026 08:51
acc6aec to
3394e5d
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
2 times, most recently
from
June 21, 2026 05:04
b8af1e4 to
33db2ef
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
from
July 17, 2026 02:02
33db2ef to
272492d
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
from
August 5, 2026 15:14
272492d to
27b2094
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
from
September 1, 2026 11:48
27b2094 to
16ef2be
Compare
renovate
Bot
force-pushed
the
renovate/detekt.compose
branch
from
September 1, 2026 17:46
16ef2be to
44f3d33
Compare
This branch has not been deployed
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.4.28→0.6.6Release Notes
mrmans0n/compose-rules (io.nlopez.compose.rules:detekt)
v0.6.6What's changed
Dependency Matrix
v0.6.5A new few rules!
UnnecessaryLaunchedEffectwill pester you in Compose 1.12+ if you use aLaunchedEffectand nothing in it issuspend. You can configure known exemptions, if you have some effects where timing matters and you'd prefer to keep usingLaunchedEffecton them (e.g.FocusRequesterinteractions are sensible to this).MissingNonRestartableComposablefor pass through Composables that not need restarting.What's changed
Dependency Matrix
v0.6.4: 0.6.4What's Changed
Full Changelog: mrmans0n/compose-rules@v0.6.3...v0.6.4
Dependency Matrix
v0.6.3What's changed
Dependency Matrix
v0.6.2What's changed
Dependency Matrix
v0.6.1What's changed
Dependency Matrix
v0.6.0🎉 A few new rules for you all
For both detekt and ktlint:
ComposableNestingDepth, an opt-in rule to add a limit to how many nested content emitters could be used.And these are detekt exclusive, as they require the Kotlin Analysis API.
StaleRememberUpdatedStateInRememberto find sneaky misuses of rememberUpdatedStateMissingReadOnlyComposableto find composables that could be optimized by being annotated by@ReadOnlyComposable.InvalidReadOnlyComposableto find annotated@ReadOnlyComposables that shouldn't be.UnnecessaryComposableto find composables that don't need to be composable functions.VarsWithoutStateBackingto find potential misuses of var in a composable function.ConditionHoistto find issues where the contents of a slotted composable function don't emit anything due to branching code.This is a significant departure for this ruleset, as they are the first rules that are actually using type resolution.
What's changed
StaleRememberUpdatedStateInRememberdetekt rule (#642) @mrmans0nDependency Matrix
v0.5.9What's Changed
New Contributors
Full Changelog: mrmans0n/compose-rules@v0.5.8...v0.5.9
v0.5.8: 0.5.8What's Changed
New Contributors
Dependency Matrix
Full Changelog: mrmans0n/compose-rules@v0.5.7...v0.5.8
v0.5.7What's changed
Dependency Matrix
v0.5.6What's changed
Dependency Matrix
v0.5.5What's changed
Dependency Matrix
v0.5.4What's changed
Dependency Matrix
v0.5.3What's changed
Dependency Matrix
v0.5.2What's changed
Dependency Matrix
v0.5.1What's changed
Dependency Matrix
v0.5.0What's changed
Dependency Matrix
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.