-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from kmyk/format-everything
Update formatters
- Loading branch information
Showing
28 changed files
with
885 additions
and
797 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 |
---|---|---|
@@ -1,35 +1,32 @@ | ||
--- | ||
name: Bug report / バグ報告 | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
## Summary / 概要 | ||
|
||
|
||
## Steps to reproduce / 再現方法 | ||
|
||
1. xxx | ||
1. yyy | ||
1. zzz | ||
|
||
``` python | ||
```python | ||
# Pelase include your Python code that you used | ||
``` | ||
|
||
environments: | ||
|
||
- version: (please write the versions of related things, e.g. `$ stack run --version`) | ||
- version: (please write the versions of related things, e.g. `$ stack run --version`) | ||
|
||
## Expected behavior / 期待される挙動 | ||
|
||
|
||
## Actual behavior / 実際の挙動 | ||
|
||
``` console | ||
```console | ||
$ echo Please paste the log here | ||
Please paste the log here | ||
``` |
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 |
---|---|---|
@@ -1,13 +1,11 @@ | ||
--- | ||
name: Feature request / 機能要望 | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
## Description / 説明 | ||
|
||
|
||
## Motivation / 動機 |
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
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
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,18 @@ | ||
name: format-markdown | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
format-markdown: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
- name: Run Prettier | ||
run: | | ||
yarn prettier --check $(git ls-files | grep '\.md$') | ||
shell: bash |
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
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,18 @@ | ||
name: format-yaml | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
format-yaml: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
- name: Run Prettier | ||
run: | | ||
yarn prettier --check $(git ls-files | grep '\.yml$\|\.yaml$\|\.json$') | ||
shell: bash |
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
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
Oops, something went wrong.