From 0181f295834eeefa8af4cebcf50249040d40cc1f Mon Sep 17 00:00:00 2001 From: Drew Stephens <drew@dinomite.net> Date: Thu, 12 Sep 2024 10:29:01 -0400 Subject: [PATCH 1/2] Removed IntelliJ plugin block from readme As [mentioned in #726](https://github.com/JLLeitschuh/ktlint-gradle/pull/726#issuecomment-1984969722) --- README.md | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/README.md b/README.md index a7a71b34..cb70eb9f 100644 --- a/README.md +++ b/README.md @@ -281,32 +281,6 @@ ktlint { ``` </details> -### IntelliJ Idea Only Plugin - -**Note:** This plugin is automatically applied by the main `ktlint` plugin. - -This plugin just adds [special tasks](#additional-helper-tasks) that can generate IntelliJ IDEA codestyle -rules using ktlint. - -#### Idea plugin simple setup - -Build script snippet for new plugin mechanism introduced in Gradle 2.1: -```kotlin -plugins { - id("org.jlleitschuh.gradle.ktlint-idea") version "<current_version>" -} -``` - -#### Idea plugin setup using legacy apply method - -For all Gradle versions: - -Use the same `buildscript` logic as [above](#simple-setup), but with this instead of the above suggested `apply` line. If you also want the GIT pre-commit gradle tasks, keep both `apply` variations. - -```groovy -apply plugin: "org.jlleitschuh.gradle.ktlint-idea" -``` - ### Configuration The following configuration block is _optional_. From 9d89310ef48f3a4ea81533fbf2a2c6e6980e0c5c Mon Sep 17 00:00:00 2001 From: Drew Stephens <drew@dinomite.net> Date: Tue, 1 Oct 2024 15:37:36 +0000 Subject: [PATCH 2/2] Add changelog entry for IJ plugin removal --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac78f4c6..4ad50025 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ### Fixed - fix tests which relied on a third party reporter in jcenter [#772](https://github.com/JLLeitschuh/ktlint-gradle/pull/772) +- Remove IntelliJ plugin references from README [#775](https://github.com/JLLeitschuh/ktlint-gradle/pull/775) ## [12.1.1] - 2024-05-07