Skip to content

Commit

Permalink
Improve inspections
Browse files Browse the repository at this point in the history
Yes, this includes two unused variables, but it is the only way to not
disable spellchecking for the entire file (and mark inspections as
"off").
  • Loading branch information
opwvhk committed Mar 25, 2024
1 parent 0af702b commit 5a58375
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
@file:Suppress("SpellCheckingInspection")

import org.jetbrains.intellij.tasks.RunPluginVerifierTask.FailureLevel
import java.util.*

Expand Down Expand Up @@ -82,16 +80,18 @@ intellij {

// Extra plugin(s); not needed, but maybe useful during development:
plugins.add("markdown")
@Suppress("UNUSED_VARIABLE") val lombokPluginName = "Lombook Plugin" // Yes, the typo is part of the official name
@Suppress("UNUSED_VARIABLE") val editorConfigPluginName = "org.editorconfig.editorconfigjetbrains"
/* Other (bundled) plugins: */
/*
Other (bundled) plugins:
plugins.add("org.intellij.intelliLang")
plugins.add("Git4Idea")
plugins.add("com.intellij.tasks")
plugins.add("Lombook Plugin") // Yes, the typo is part of the official name
plugins.add(lombokPluginName)
plugins.add("org.intellij.plugins.markdown")
plugins.add("org.jetbrains.idea.maven")
plugins.add("org.jetbrains.kotlin")
plugins.add("org.editorconfig.editorconfigjetbrains")
plugins.add(editorConfigPluginName)
plugins.add("org.jetbrains.plugins.github")
plugins.add("org.jetbrains.idea.maven.model")
plugins.add("com.intellij.copyright")
Expand Down

0 comments on commit 5a58375

Please sign in to comment.