Skip to content

Commit e9299df

Browse files
committed
Initial commit
0 parents  commit e9299df

37 files changed

+1893
-0
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Dependabot configuration:
2+
# https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates
3+
4+
version: 2
5+
updates:
6+
- package-ecosystem: "gradle"
7+
directory: "/"
8+
schedule:
9+
interval: "daily"

.github/readme/draft-release.png

33.8 KB
Loading
42.1 KB
Loading

.github/readme/run-logs.png

70.9 KB
Loading
73.4 KB
Loading
51.9 KB
Loading
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
2+
3+
# %NAME% Changelog
4+
5+
## [Unreleased]
6+
### Added
7+
- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)

.github/template-cleanup/README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# %NAME%
2+
3+
![Build](https://github.com/%REPOSITORY%/workflows/Build/badge.svg)
4+
[![Version](https://img.shields.io/jetbrains/plugin/v/PLUGIN_ID.svg)](https://plugins.jetbrains.com/plugin/PLUGIN_ID)
5+
[![Downloads](https://img.shields.io/jetbrains/plugin/d/PLUGIN_ID.svg)](https://plugins.jetbrains.com/plugin/PLUGIN_ID)
6+
7+
## Template ToDo list
8+
- [x] Create a new [IntelliJ Platform Plugin Template][template] project.
9+
- [ ] Verify the [pluginGroup](/gradle.properties), [plugin ID](/src/main/resources/META-INF/plugin.xml) and [sources package](/src/main/kotlin).
10+
- [ ] Review the [Legal Agreements](https://plugins.jetbrains.com/docs/marketplace/legal-agreements.html).
11+
- [ ] [Publish a plugin manually](https://plugins.jetbrains.com/docs/intellij/publishing-plugin.html?from=IJPluginTemplate) for the first time.
12+
- [ ] Set the Plugin ID in the above README badges.
13+
- [ ] Set the [Deployment Token](https://plugins.jetbrains.com/docs/marketplace/plugin-upload.html).
14+
- [ ] Click the <kbd>Watch</kbd> button on the top of the [IntelliJ Platform Plugin Template][template] to be notified about releases containing new features and fixes.
15+
16+
<!-- Plugin description -->
17+
This Fancy IntelliJ Platform Plugin is going to be your implementation of the brilliant ideas that you have.
18+
19+
This specific section is a source for the [plugin.xml](/src/main/resources/META-INF/plugin.xml) file which will be extracted by the [Gradle](/build.gradle.kts) during the build process.
20+
21+
To keep everything working, do not remove `<!-- ... -->` sections.
22+
<!-- Plugin description end -->
23+
24+
## Installation
25+
26+
- Using IDE built-in plugin system:
27+
28+
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>Marketplace</kbd> > <kbd>Search for "%NAME%"</kbd> >
29+
<kbd>Install Plugin</kbd>
30+
31+
- Manually:
32+
33+
Download the [latest release](https://github.com/%REPOSITORY%/releases/latest) and install it manually using
34+
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>⚙️</kbd> > <kbd>Install plugin from disk...</kbd>
35+
36+
37+
---
38+
Plugin based on the [IntelliJ Platform Plugin Template][template].
39+
40+
[template]: https://github.com/JetBrains/intellij-platform-plugin-template
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# IntelliJ Platform Artifacts Repositories
2+
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
3+
4+
pluginGroup = %GROUP%
5+
pluginName = %NAME%
6+
pluginVersion = 0.0.1
7+
pluginSinceBuild = 202
8+
pluginUntilBuild = 203.*
9+
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
10+
# See https://jb.gg/intellij-platform-builds-list for available build versions
11+
pluginVerifierIdeVersions = 2020.2.4, 2020.3.2, 2021.1
12+
13+
platformType = IC
14+
platformVersion = 2020.2.4
15+
platformDownloadSources = true
16+
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
17+
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
18+
platformPlugins =
19+
20+
# Opt-out flag for bundling Kotlin standard library.
21+
# See https://kotlinlang.org/docs/reference/using-gradle.html#dependency-on-the-standard-library for details.
22+
kotlin.stdlib.default.dependency = false
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = "%NAME%"

0 commit comments

Comments
 (0)