Releases: jeremymailen/kotlinter-gradle
Releases · jeremymailen/kotlinter-gradle
2.1.2
Upgrade to ktlint 0.35.0
- impact on kotlinter is primarily the included bugfixes
2.1.1
2.1.0
- Upgrade to ktlint 0.34.2 which addresses known issues with falsely reported import errors
- Custom
FormatTaskandLintTaskinstances can now receive the same configuration parameters available in thekotlinterextension. - Print failing [rule-id] in the console along with rule description to aid with identifying which rules to disable.
2.0.0
Major new release
Compatibility
Two obsolete parameters removed from the kotlinter extension:
: use a single value array ofreporterreportersinstead: disable the rule by id instead, exampleallowWildcardImportsdisabledRules = ["no-wildcard-imports"]
Features
- upgrade to ktlint 0.34.0 including all changes therein
- support for
.editorconfig - support for
disabledRulesconfiguration in thekotlinterextension
Known Issues
- imports may be falsely reported as unused, see pinterest/ktlint#526
workaround:disabledRules = ["no-unused-imports"]
1.26.0
All the good stuff included in ktlint 0.33.0
This release of ktlint has temporarily disabled the wildcard import rule, so those still wishing to enforce no wildcard imports must set the new extension configuration parameter:
kotlinter {
allowWildcardImports = false
}1.25.2
1.25.1
1.25.0
- Faster, parallelized formatting using gradle workers by @samzurcher
1.24.1
1.24.0
- Fixes compatibility with Kotlin 1.3.30+
- Upgrades to ktlint 0.32.0 including all changes, fixes, and improvements
- known issue: html reporter not yet compatible: mcassiano/ktlint-html-reporter#13