Implemented suppress lint intention action for android lint (KT-12020)

#KT-12020 Fixed
This commit is contained in:
Vyacheslav Gerasimov
2016-11-07 00:28:16 +03:00
parent 6a8f78d7c1
commit 60bc35b787
28 changed files with 427 additions and 3 deletions
@@ -0,0 +1,5 @@
<html>
<body>
This inspection reports identifiers in Android projects which are not accepted by the Android runtime (for example, method names containing spaces).
</body>
</html>
@@ -0,0 +1,2 @@
@SuppressLint("SdCardPath")
val a = "/sdcard"
@@ -0,0 +1 @@
val a = "/sdcard"
@@ -0,0 +1,5 @@
<html>
<body>
This intention suppresses android lint warnings with @SuppressLint annotation added to closest parent declaration
</body>
</html>