Skip to content

Commit df0270a

Browse files
committed
Update plugin metadata and improve inspection naming
Updated the plugin URL to remove specific versioning for simplicity. Standardized inspection display names to use consistent lowercase style. Added an error handler for JetBrains Marketplace error reporting.
1 parent f54515e commit df0270a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/main/resources/META-INF/plugin.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<idea-plugin url="https://meanmail.dev/plugin/7">
1+
<idea-plugin url="https://meanmail.dev">
22
<id>dev.meanmail.plugin.nginx-intellij-plugin</id>
33
<name>Nginx Configuration</name>
44
<version>SNAPSHOT</version>
@@ -23,19 +23,20 @@
2323
<localInspection
2424
language="Nginx Configuration"
2525
implementationClass="dev.meanmail.codeInsight.inspections.NginxDirectiveInspection"
26-
displayName="Invalid Nginx Directive Value"
26+
displayName="Invalid nginx directive usage"
2727
groupName="Nginx"
2828
enabledByDefault="true"
2929
level="ERROR"
3030
shortName="NginxDirectiveValueInspection"/>
3131
<localInspection
3232
language="Nginx Configuration"
3333
implementationClass="dev.meanmail.codeInsight.inspections.NginxGeoInspection"
34-
displayName="Invalid Nginx Geo Directive Usage"
34+
displayName="Invalid nginx geo directive usage"
3535
groupName="Nginx"
3636
enabledByDefault="true"
3737
level="ERROR"
3838
shortName="NginxGeoInspection"/>
39+
<errorHandler implementation="com.intellij.diagnostic.JetBrainsMarketplaceErrorReportSubmitter"/>
3940
</extensions>
4041

4142
<extensions defaultExtensionNs="com.intellij.lang">

0 commit comments

Comments
 (0)