How do I disable the "parameter $foo is never used...
# intellij
m
How do I disable the "parameter $foo is never used inspection"? I can disable "UnusedSymbol". But it doesn't look to affect parameters?
Copy code
fun test(a: String) {

  }
Parameter 'a' is never used
.
a
It's a compiler warning, so can't be disabled. Please vote for https://youtrack.jetbrains.com/issue/KT-8087
🙏 1
1