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
Thank you, that's a good workaround. However, I still think there is room for improvement in the plugin: either that the format task inherits its exclusions from the lint task if no exclusions are specified, or that the format task also can be configured in the same way as the lint task, i.e. with an exclude-dsl.
We have configured the linter to ignore our (generated) code directory
db
like so:tasks.lintKotlinMain { exclude("**/db/**") }
This works fine. However, when running task
formatKotlin
, the formatter does not respect this setting but formats the code in thedb
directory.The text was updated successfully, but these errors were encountered: