You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assume that I have a code sample with some versioned plugins, and the versions get updated:
plugins {
kotlin("jvm") version "1.8.0"
kotlin("plugin.serialization") version "1.8.0"
id("com.squareup.anvil") version "2.4.3"
}
Those two different versions will be in two different rules, but the console output would look like this:
> Task :doksWebsite
wrote changes to file://some-file.mdx
line 38 -- kotlin("jvm") version "1.8.0"
++ kotlin("jvm") version "1.8.10"
line 39 -- kotlin("plugin.serialization") version "1.8.0"
++ kotlin("plugin.serialization") version "1.8.10"
line 40 -- id("com.squareup.anvil") version "2.4.3"
++ id("com.squareup.anvil") version "2.4.4"
If the rules wound up updating different sections, they would also just be described in a single diff, since the output is just describing changes to the file.
It would probably be better if the outputs were separated by rule and section. The rule name should be printed along with the file path, and each rule should be reported individually.
The text was updated successfully, but these errors were encountered:
Assume that I have a code sample with some versioned plugins, and the versions get updated:
Those two different versions will be in two different rules, but the console output would look like this:
If the rules wound up updating different sections, they would also just be described in a single diff, since the output is just describing changes to the file.
It would probably be better if the outputs were separated by rule and section. The rule name should be printed along with the file path, and each rule should be reported individually.
The text was updated successfully, but these errors were encountered: