Skip to content

Commit ab3530a

Browse files
committed
initial commit
1 parent a1e5dbb commit ab3530a

File tree

4 files changed

+50
-0
lines changed

4 files changed

+50
-0
lines changed

.gitignore/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@
2020

2121
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2222
hs_err_pid*
23+
24+
.idea/
File renamed without changes.

resources/META-INF/plugin.xml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<idea-plugin>
2+
<id>technology.svelte</id>
3+
<name>SvelteJS Plugin</name>
4+
<version>1.0</version>
5+
<vendor email="[email protected]" url="https://github.com/dschulten/sveltejs-idea-plugin">Escalon Systementwicklung, Dietrich Schulten</vendor>
6+
7+
<description><![CDATA[
8+
Enter short description for your plugin here.<br>
9+
<em>most HTML tags may be used</em>
10+
]]></description>
11+
12+
<change-notes><![CDATA[
13+
Add change notes here.<br>
14+
<em>most HTML tags may be used</em>
15+
]]>
16+
</change-notes>
17+
18+
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
19+
<idea-version since-build="173.0"/>
20+
21+
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
22+
on how to target different products -->
23+
<!-- uncomment to enable plugin in all products
24+
<depends>com.intellij.modules.lang</depends>
25+
-->
26+
27+
<extensions defaultExtensionNs="com.intellij">
28+
<!-- Add your extensions here -->
29+
</extensions>
30+
31+
<actions>
32+
<!-- Add your actions here -->
33+
</actions>
34+
35+
</idea-plugin>

sveltejs-idea-plugin.iml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="PLUGIN_MODULE" version="4">
3+
<component name="DevKit.ModuleBuildProperties" url="file://$MODULE_DIR$/resources/META-INF/plugin.xml" />
4+
<component name="NewModuleRootManager" inherit-compiler-output="true">
5+
<exclude-output />
6+
<content url="file://$MODULE_DIR$">
7+
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
8+
<sourceFolder url="file://$MODULE_DIR$/resources" type="java-resource" />
9+
</content>
10+
<orderEntry type="inheritedJdk" />
11+
<orderEntry type="sourceFolder" forTests="false" />
12+
</component>
13+
</module>

0 commit comments

Comments
 (0)