Skip to content

Commit

Permalink
Setting: #1 Repository Setting (#5)
Browse files Browse the repository at this point in the history
* feature: setting issue template

* feature: setting pr template

* feature: setting .gitignore
  • Loading branch information
lcomment authored Jul 7, 2023
1 parent c62ffb5 commit 0c31305
Show file tree
Hide file tree
Showing 6 changed files with 185 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/docs-edit-template.md
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
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
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
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/fix-template.md
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
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/refactor-template.md
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
23 changes: 23 additions & 0 deletions .github/pull_request_template.md
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
40 changes: 40 additions & 0 deletions .gitignore
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

0 comments on commit 0c31305

Please sign in to comment.