Skip to content

Commit b2383f4

Browse files
authored
Merge pull request #7 from ybkuroki/develop
Change to material design
2 parents fc27861 + f2b38dd commit b2383f4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+3467
-4632
lines changed

.browserslistrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not ie <= 8

.eslintrc.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
'extends': [
7+
'plugin:vue/essential',
8+
'eslint:recommended'
9+
],
10+
rules: {
11+
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
12+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
13+
},
14+
parserOptions: {
15+
parser: 'babel-eslint'
16+
}
17+
}

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG]"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
## Summary
11+
> Write the actual behavior and the purpose to modify.
12+
13+
## Cause
14+
> Why such a problem happened?
15+
16+
### To reproduce
17+
Perform the follwing steps to reproduce the problem.
18+
19+
1.
20+
1.
21+
22+
## Expected behavior
23+
Expected the follwing behavior.
24+
25+
## How to deal with this issue
26+
> How do you fix it?
27+
28+
## Notes
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[NEW]"
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
## Purpose
11+
> What is it necessary for?
12+
13+
## Expected behavior
14+
Expected the follwing behavior.
15+
16+
## How to deal with this issue
17+
> How do you fix it?
18+
19+
## Notes

.github/pull_request_template.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
### Fixes #[ISSUE NUMBER].
2+
3+
Changes proposed in this pull request:
4+
5+
- ...
6+
- ...
7+
- ...
8+
9+
by [YOUR NAME]

.github/workflows/check.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: check
2+
3+
on:
4+
pull_request:
5+
branches: [ master ]
6+
7+
jobs:
8+
check:
9+
name: check
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: eslint review
14+
uses: reviewdog/action-eslint@v1
15+
with:
16+
github_token: ${{ secrets.github_token }}
17+
reporter: github-pr-review
18+
eslint_flags: 'src/**/*.{vue,js}'

.github/workflows/release.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: release
2+
on:
3+
push:
4+
tags:
5+
- "v[0-9]+.[0-9]+.[0-9]+"
6+
jobs:
7+
Release:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
with:
12+
fetch-depth: 50
13+
- uses: notlmn/release-with-changelog@v3
14+
with:
15+
token: ${{ secrets.GITHUB_TOKEN }}
16+
exclude: '^polish|^bump|^typo'
17+
commit-template: '- {hash} {title}'
18+
template: |
19+
### Changelog
20+
21+
{commits}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ yarn-error.log*
1818
*.ntvs*
1919
*.njsproj
2020
*.sln
21-
*.sw*
21+
*.sw?

CONTRIBUTING.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Contribution
2+
## Preface
3+
Thank you for considering contributing to this sample application.
4+
I would like to create the sample application such as helpful when you would like to develop a web application using golang.
5+
6+
## How to report a bug
7+
Please create a issue which wrote about the following points when you report a bug.
8+
9+
1. Version of golang you are using
10+
1. Operating system you are using
11+
1. Reprocedure
12+
1. Expected behavior
13+
14+
Also, please write about it when you know the causes and how to fix the bug.
15+
16+
1. Cause
17+
1. How to fix
18+
19+
## How to suggest a feature or enhancement
20+
Please create a issue which wrote that purpose and expected behavior, when you have functions which you would like to implement as a sample.
21+
22+
1. Purpose
23+
1. Expected behavoir, What kind of function do you propose?
24+
1. How to develop
25+
26+
## How to create a pull request
27+
You can feel free to fork this repository, fix the source code and create a pull request when you have noticed that you can resolve a issue.
28+
And after that, please check passed the check workflow of GitHub Action.
29+
30+
I will check your pull request, and I may suggest some improvements or alternatives.
31+
If there was no problem, I will merge your changes.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 ybkuroki
3+
Copyright (c) 2021 ybkuroki
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)