Skip to content

Commit bc763c6

Browse files
committed
initial commit
0 parents  commit bc763c6

26 files changed

+1166
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: meanmail
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**IDE (please complete the following information. See Main Menu -> Help -> About):**
27+
- OS: [e.g. Windows 10]
28+
- Product: [e.g. Idea Ultimate, PyCharm Community]
29+
- Version [e.g. IU-192.7142.36, 2019.2.4]
30+
- JRE Version: [e.g. OpenJDK 64-Bit Server VM by JetBrains s.r.o]
31+
- Project SDK: [Python 3.7.1, Python 2.7.17]
32+
33+
**Plugin (please complete the following information. See Main Menu -> File -> Settings -> Plugins):**
34+
- Version [e.g. 2020.1-193]
35+
36+
**Additional context**
37+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/custom.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Custom issue template
3+
about: Describe this issue template's purpose here.
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: meanmail
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: "Validate Gradle Wrapper"
2+
on: [push, pull_request]
3+
4+
jobs:
5+
validation:
6+
name: "Validation"
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: gradle/wrapper-validation-action@v1

.github/workflows/gradle.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Java CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Set up JDK 1.8
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 1.8
16+
- name: Build with Gradle
17+
run: ./gradlew buildPlugin

.gitignore

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Linux template
3+
*~
4+
5+
# temporary files which can be created if a process still has a handle open of a deleted file
6+
.fuse_hidden*
7+
8+
# KDE directory preferences
9+
.directory
10+
11+
# Linux trash folder which might appear on any partition or disk
12+
.Trash-*
13+
14+
# .nfs files are created when an open file is removed but is still being accessed
15+
.nfs*
16+
### Kotlin template
17+
# Compiled class file
18+
*.class
19+
20+
# Log file
21+
*.log
22+
23+
# BlueJ files
24+
*.ctxt
25+
26+
# Mobile Tools for Java (J2ME)
27+
.mtj.tmp/
28+
29+
# Package Files #
30+
*.jar
31+
*.war
32+
*.nar
33+
*.ear
34+
*.zip
35+
*.tar.gz
36+
*.rar
37+
38+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
39+
hs_err_pid*
40+
### JetBrains template
41+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
42+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
43+
44+
# User-specific stuff
45+
.idea/**/workspace.xml
46+
.idea/**/tasks.xml
47+
.idea/**/dictionaries
48+
.idea/**/shelf
49+
50+
# Sensitive or high-churn files
51+
.idea/**/dataSources/
52+
.idea/**/dataSources.ids
53+
.idea/**/dataSources.local.xml
54+
.idea/**/sqlDataSources.xml
55+
.idea/**/dynamic.xml
56+
.idea/**/uiDesigner.xml
57+
.idea/**/dbnavigator.xml
58+
59+
# Gradle
60+
.idea/**/gradle.xml
61+
.idea/**/libraries
62+
63+
# CMake
64+
cmake-build-debug/
65+
cmake-build-release/
66+
67+
# Mongo Explorer plugin
68+
.idea/**/mongoSettings.xml
69+
70+
# File-based project format
71+
*.iws
72+
73+
# IntelliJ
74+
out/
75+
76+
# mpeltonen/sbt-idea plugin
77+
.idea_modules/
78+
79+
# JIRA plugin
80+
atlassian-ide-plugin.xml
81+
82+
# Cursive Clojure plugin
83+
.idea/replstate.xml
84+
85+
# Crashlytics plugin (for Android Studio and IntelliJ)
86+
com_crashlytics_export_strings.xml
87+
crashlytics.properties
88+
crashlytics-build.properties
89+
fabric.properties
90+
91+
# Editor-based Rest Client
92+
.idea/httpRequests
93+
### Java template
94+
# Compiled class file
95+
*.class
96+
97+
# Log file
98+
*.log
99+
100+
# BlueJ files
101+
*.ctxt
102+
103+
# Mobile Tools for Java (J2ME)
104+
.mtj.tmp/
105+
106+
# Package Files #
107+
*.jar
108+
*.war
109+
*.nar
110+
*.ear
111+
*.zip
112+
*.tar.gz
113+
*.rar
114+
115+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
116+
hs_err_pid*
117+
### Windows template
118+
# Windows thumbnail cache files
119+
Thumbs.db
120+
ehthumbs.db
121+
ehthumbs_vista.db
122+
123+
# Dump file
124+
*.stackdump
125+
126+
# Folder config file
127+
[Dd]esktop.ini
128+
129+
# Recycle Bin used on file shares
130+
$RECYCLE.BIN/
131+
132+
# Windows Installer files
133+
*.cab
134+
*.msi
135+
*.msix
136+
*.msm
137+
*.msp
138+
139+
# Windows shortcuts
140+
*.lnk
141+
142+
/idea-flex.skeleton
143+
!/gradle/wrapper/gradle-wrapper.jar
144+
build
145+
.gradle
146+
src/main/gen

.idea/compiler.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)