Allow to override suppression key for inspections

This commit is contained in:
Nikolay Krasko
2015-12-11 21:24:20 +03:00
committed by Nikolay Krasko
parent 8196621be5
commit 697132561f
16 changed files with 55 additions and 31 deletions
@@ -1,4 +1,4 @@
// "Suppress 'KotlinUnusedImport' for file ${file}" "true"
// "Suppress 'UnusedImport' for file ${file}" "true"
import<caret> java.io.*
@@ -1,6 +1,6 @@
// "Suppress 'KotlinUnusedImport' for file ${file}" "true"
// "Suppress 'UnusedImport' for file ${file}" "true"
@file:Suppress("KotlinUnusedImport")
@file:Suppress("UnusedImport")
import java.io.*