mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
* Format with ktfmt, use ktlint for inspections only * Make ktlint plugin required again, but set to manual * Make ktlint not used for formatting in IDE * Make ktfmt plugin required, used for formatting in IDE * Make pre-push run config use ktfmt * Add ktfmt Gradle plugin * ktfmt uses kotlinlang style both in IDE and Gradle * Upgrade ktfmt Gradle plugin, set style Also sets a minimum version for the ktfmt plugin that supports custom styles, and stores our style. * Make Kotlin and KDoc formatter plugins required * Upgrade kotlinter plugin to latest version * Use ktfmt to reformat project in run config * Add git hook for pre-push to ensure correct formatting * Format with ktfmt (#572) * Reformat everything with ktfmt * Don't nag about ktlint suppressions in .editorconfig * Suppress ktlint checks that clash with ktfmt * Disable MergeSarifTask for now * Disable upload-sarif CI step for now GitOrigin-RevId: 5038d31e095b7911d70d93b10052c012a7aa84fc
11 lines
434 B
XML
11 lines
434 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project version="4">
|
|
<component name="KtfmtSettings">
|
|
<option name="customBlockIndent" value="4" />
|
|
<option name="customManageTrailingCommas" value="true" />
|
|
<option name="customMaxLineLength" value="120" />
|
|
<option name="enableKtfmt" value="Enabled" />
|
|
<option name="enabled" value="true" />
|
|
<option name="uiFormatterStyle" value="Custom" />
|
|
</component>
|
|
</project> |