Merge pull request #1745 from JetBrains/rr/suppressor

Introduce KotlinInspectionSuppressor
This commit is contained in:
Alexander Podkhalyuzin
2018-07-03 14:37:39 +03:00
committed by GitHub
12 changed files with 138 additions and 0 deletions
@@ -0,0 +1,8 @@
// "Typo: Change to..." "false"
// TOOL: com.intellij.spellchecker.inspections.SpellCheckingInspection
// ACTION: Add 'const' modifier
// ACTION: Convert property initializer to getter
// ACTION: To raw string literal
@Suppress("SpellCheckingInspection")
val str = "<caret>kjsghkjshtiurhuig"
@@ -0,0 +1,17 @@
// "Suppress 'SpellCheckingInspection' for val str" "true"
// TOOL: com.intellij.spellchecker.inspections.SpellCheckingInspection
// ACTION: Add 'const' modifier
// ACTION: Typo: Change to...
// ACTION: Edit inspection profile setting
// ACTION: Fix all 'Typo' problems in file
// ACTION: Run inspection on ...
// ACTION: Disable inspection
// ACTION: Save 'kjsghkjshtiurhuig' to project-level dictionary
// ACTION: Show property type hints
// ACTION: Edit intention settings
// ACTION: Convert property initializer to getter
// ACTION: Inject language or reference
// ACTION: To raw string literal
// ACTION: Suppress 'SpellCheckingInspection' for file suppressAvailable.kt
val str = "<caret>kjsghkjshtiurhuig"
@@ -0,0 +1,18 @@
// "Suppress 'SpellCheckingInspection' for val str" "true"
// TOOL: com.intellij.spellchecker.inspections.SpellCheckingInspection
// ACTION: Add 'const' modifier
// ACTION: Typo: Change to...
// ACTION: Edit inspection profile setting
// ACTION: Fix all 'Typo' problems in file
// ACTION: Run inspection on ...
// ACTION: Disable inspection
// ACTION: Save 'kjsghkjshtiurhuig' to project-level dictionary
// ACTION: Show property type hints
// ACTION: Edit intention settings
// ACTION: Convert property initializer to getter
// ACTION: Inject language or reference
// ACTION: To raw string literal
// ACTION: Suppress 'SpellCheckingInspection' for file suppressAvailable.kt
@Suppress("SpellCheckingInspection")
val str = "kjsghkjshtiurhuig"