Files
openide/plugins/editorconfig/src/META-INF/plugin.xml
T

22 lines
1.3 KiB
XML

<idea-plugin version="2">
<id>org.editorconfig.editorconfigjetbrains</id>
<name>EditorConfig</name>
<vendor url="http://editorconfig.org">Kevin Bell, JetBrains</vendor>
<description><![CDATA[
A JetBrains IDE plugin supporting the EditorConfig standard
]]></description>
<depends>com.intellij.modules.lang</depends>
<extensions defaultExtensionNs="com.intellij">
<applicationService serviceInterface="org.editorconfig.plugincomponents.EditorConfigNotifier"
serviceImplementation="org.editorconfig.plugincomponents.EditorConfigNotifier"/>
<generalCodeStyleOptionsProvider instance="org.editorconfig.settings.EditorConfigConfigurable"/>
<codeStyleSettingsProvider implementation="org.editorconfig.settings.EditorConfigConfigurable"/>
<fileIndentOptionsProvider implementation="org.editorconfig.configmanagement.EditorConfigIndentOptionsProvider" />
<editorNotificationProvider implementation="org.editorconfig.plugincomponents.EditorConfigNotifierProvider"/>
<applicationService serviceInterface="org.editorconfig.plugincomponents.SettingsProviderComponent" serviceImplementation="org.editorconfig.plugincomponents.SettingsProviderComponent" />
<postStartupActivity implementation="org.editorconfig.plugincomponents.ConfigProjectComponent"/>
</extensions>
</idea-plugin>