-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feature: setting issue template * feature: setting pr template * feature: setting .gitignore
- Loading branch information
Showing
6 changed files
with
185 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: Docs Edit template | ||
about: Describe docs edit | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
--- | ||
name: Docs edit request | ||
about: Describe this issue template's purpose here. | ||
title: '' | ||
labels: "✍️docs" | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Edit Contents | ||
- edit content1 | ||
- edit content2 | ||
|
||
## Important | ||
- important |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Description | ||
|
||
> description | ||
## To-do | ||
|
||
- [ ] todo | ||
|
||
## ETC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
name: Fix template | ||
about: Describe fix request | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
--- | ||
name: Fix request | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: "" | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Description | ||
|
||
> description | ||
## Code To Request | ||
|
||
**Prev** | ||
```java | ||
|
||
``` | ||
|
||
**Fixed** | ||
```java | ||
|
||
``` | ||
## ETC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
name: Refactor template | ||
about: Describe refactor request | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
--- | ||
|
||
name: Rix request | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: "" | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Description | ||
|
||
> description | ||
## Code To Request | ||
|
||
**Prev** | ||
|
||
```java | ||
|
||
``` | ||
|
||
**Fixed** | ||
|
||
```java | ||
|
||
``` | ||
|
||
## ETC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
> ### PR Introduce | ||
> ### Description | ||
> ### Core Features | ||
```java | ||
. . . | ||
``` | ||
|
||
> ### Prev | ||
```java | ||
. . . | ||
``` | ||
|
||
> ### Changed | ||
```java | ||
. . . | ||
``` | ||
|
||
> ### etc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
HELP.md | ||
.gradle | ||
build/ | ||
!gradle/wrapper/gradle-wrapper.jar | ||
!**/src/main/**/build/ | ||
!**/src/test/**/build/ | ||
|
||
### STS ### | ||
.apt_generated | ||
.classpath | ||
.factorypath | ||
.project | ||
.settings | ||
.springBeans | ||
.sts4-cache | ||
bin/ | ||
!**/src/main/**/bin/ | ||
!**/src/test/**/bin/ | ||
|
||
### IntelliJ IDEA ### | ||
.idea | ||
*.iws | ||
*.iml | ||
*.ipr | ||
out/ | ||
!**/src/main/**/out/ | ||
!**/src/test/**/out/ | ||
|
||
### NetBeans ### | ||
/nbproject/private/ | ||
/nbbuild/ | ||
/dist/ | ||
/nbdist/ | ||
/.nb-gradle/ | ||
|
||
### VS Code ### | ||
.vscode/ | ||
|
||
### Mac OS ### | ||
.DS_Store |