Skip to content

Commit d524acc

Browse files
committed
chore: cleanup plugin.xml
1 parent 1de178c commit d524acc

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

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

+18-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!--suppress PluginXmlValidity, PluginXmlDynamicPlugin -->
1+
<!--suppress PluginXmlDynamicPlugin, LightServiceMigrationXML -->
22
<idea-plugin require-restart="true">
33
<id>com.github.lppedd.idea-conventional-commit</id>
44
<name>Conventional Commit</name>
@@ -21,10 +21,12 @@
2121
</applicationListeners>
2222

2323
<extensions defaultExtensionNs="com.intellij">
24+
<!--suppress PluginXmlValidity -->
2425
<ApplicationLoadListener implementation="com.github.lppedd.cc.CCApplicationLoadListener" />
2526

2627
<iconProvider implementation="com.github.lppedd.cc.icon.CCConfigFileIconProvider" />
2728

29+
<!--suppress PluginXmlValidity -->
2830
<completion.contributor
2931
order="first, before commitCompletion, before coAuthoredCompletion"
3032
language="TEXT"
@@ -91,10 +93,12 @@
9193

9294
<checkinHandlerFactory implementation="com.github.lppedd.cc.vcs.commitbuilder.CommitBuilderCheckinHandlerFactory" />
9395

94-
<notificationGroup id="com.github.lppedd.cc.notifications"
95-
displayType="STICKY_BALLOON"
96-
isLogByDefault="true"
97-
key="cc.notification.group.name"/>
96+
<notificationGroup
97+
id="com.github.lppedd.cc.notifications"
98+
displayType="STICKY_BALLOON"
99+
isLogByDefault="true"
100+
key="cc.notification.group.name"
101+
/>
98102

99103
<registryKey
100104
key="com.github.lppedd.cc.providers.vcs"
@@ -143,10 +147,19 @@
143147
</extensionPoints>
144148

145149
<extensions defaultExtensionNs="com.github.lppedd.idea-conventional-commit">
150+
<!--suppress PluginXmlValidity -->
146151
<commitTypeProvider order="first" implementation="com.github.lppedd.cc.api.impl.InternalCommitTokenProvider" />
152+
153+
<!--suppress PluginXmlValidity -->
147154
<commitScopeProvider order="first" implementation="com.github.lppedd.cc.api.impl.InternalCommitTokenProvider" />
155+
156+
<!--suppress PluginXmlValidity -->
148157
<commitFooterTypeProvider order="first" implementation="com.github.lppedd.cc.api.impl.InternalCommitTokenProvider" />
158+
159+
<!--suppress PluginXmlValidity -->
149160
<commitFooterValueProvider order="first" implementation="com.github.lppedd.cc.api.impl.InternalCommitTokenProvider" />
161+
162+
<!--suppress PluginXmlValidity -->
150163
<whatsNewProvider order="first" implementation="com.github.lppedd.cc.whatsnew.InternalWhatsNewProvider" />
151164
</extensions>
152165
</idea-plugin>

src/main/resources/messages/ConventionalCommitBundle.properties

+1
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ cc.config.coAuthorsDialog.error = Co-author's names cannot be blank
120120
# The double ' is required when positional arguments are present (e.g. {0})
121121
cc.config.coAuthorsDialog.saveError = Couldn''t save changes to file: {0}
122122

123+
cc.notification.group.name = Conventional Commit notifications
123124
cc.notifications.schema = Error reading custom defaults file.<br/>Using built-in ones.
124125

125126
cc.inspection.nonStdMessage.description = Conventional Commit: non-standard message

0 commit comments

Comments
 (0)