Merge pull request #1745 from JetBrains/rr/suppressor
Introduce KotlinInspectionSuppressor
This commit is contained in:
@@ -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"
|
||||
Reference in New Issue
Block a user