I'm trying to create an inspection suppressor for ...
# intellij-plugins
a
I'm trying to create an inspection suppressor for Kotlin but for some reason it's not recognized as a valid input for the
language
attribute:
Copy code
<idea-plugin>    
    <!-- ... -->
    <depends>org.jetbrains.kotlin</depends>

    <extensions defaultExtensionNs="org.jetbrains.kotlin">
    <!-- ... -->
    </extensions>

    <extensions defaultExtensionNs="com.intellij">
        <lang.inspectionSuppressor
                language="kotlin"     <!-- Unresolved reference -->
                implementationClass="MyInspectionSuppressor"
                order="first"
        />
    </extensions>
m
Do you have
<depends>org.jetbrains.kotlin</depends>
?
a
Yup