Implemented suppress lint intention action for android lint (KT-12020)
#KT-12020 Fixed
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user