diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fd34bf4..66754d7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,6 @@ # GitHub Actions Workflow created for testing and preparing the plugin release in following steps: # - validate Gradle Wrapper, # - run 'test' and 'verifyPlugin' tasks, -# - run Qodana inspections, # - run 'buildPlugin' task and prepare artifact for the further tests, # - run 'runPluginVerifier' task, # - create a draft release. @@ -106,10 +105,6 @@ jobs: name: pluginVerifier-result path: ${{ github.workspace }}/build/reports/pluginVerifier - # Run Qodana inspections - - name: Qodana - Code Inspection - uses: JetBrains/qodana-action@v2022.3.4 - # Prepare plugin archive content for creating artifact - name: Prepare Plugin Artifact id: artifact diff --git a/.gitignore b/.gitignore index e2e5d94..e0d53d8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ .gradle .idea -.qodana build diff --git a/.run/Run Qodana.run.xml b/.run/Run Qodana.run.xml deleted file mode 100644 index 9603583..0000000 --- a/.run/Run Qodana.run.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - true - true - false - - - \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 36fd367..e82f496 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,6 @@ plugins { id("org.jetbrains.kotlin.jvm") version "1.7.10" id("org.jetbrains.intellij") version "1.9.0" id("org.jetbrains.changelog") version "1.3.1" - id("org.jetbrains.qodana") version "0.1.13" id("org.jetbrains.grammarkit") version "2022.3.1" id("org.ajoberstar.grgit") version "5.0.0" } @@ -42,13 +41,6 @@ changelog { groups.set(emptyList()) } -qodana { - cachePath.set(projectDir.resolve(".qodana").canonicalPath) - reportPath.set(projectDir.resolve("build/reports/inspections").canonicalPath) - saveReport.set(true) - showReport.set(System.getenv("QODANA_SHOW_REPORT")?.toBoolean() ?: false) -} - tasks { wrapper { gradleVersion = properties("gradleVersion") diff --git a/qodana.yml b/qodana.yml deleted file mode 100644 index b888c69..0000000 --- a/qodana.yml +++ /dev/null @@ -1,7 +0,0 @@ -version: 1.0 -profile: - name: qodana.recommended -exclude: - - name: All - paths: - - .qodana