forked from rohankishore/AnimeSnap
-
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.
- Loading branch information
1 parent
15caded
commit ddf1fb6
Showing
2 changed files
with
106 additions
and
48 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,58 @@ | ||
name: ❓ Question | ||
description: If you have a question about how to use AnimeSnap that's not well covered by our documentation | ||
labels: ["question"] | ||
assignees: | ||
- YisusChrist | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Self Check | ||
- Look for similar errors in existing [GitHub Issues](https://github.com/YisusChrist/AnimeSnap/issues?q=is%3Aissue) (open or closed). | ||
- Take a look at the [documentation](https://github.com/YisusChrist/AnimeSnap/wiki) for help. | ||
- type: textarea | ||
validations: | ||
required: true | ||
attributes: | ||
label: Describe the bug | ||
description: A clear description of what the bug is. | ||
- type: textarea | ||
validations: | ||
required: true | ||
attributes: | ||
label: Steps to reproduce | ||
description: | | ||
Steps to reproduce the problem. | ||
placeholder: | | ||
For example: | ||
1. Execute with options '...' | ||
2. Check output '...' | ||
3. See error | ||
- type: textarea | ||
validations: | ||
required: true | ||
attributes: | ||
label: Expected behavior | ||
description: A brief description of what should happen. | ||
- type: textarea | ||
attributes: | ||
label: Screenshots and recordings | ||
description: | | ||
If applicable, add screenshots to help explain your problem. You can also record an asciinema session: https://asciinema.org/ | ||
- type: input | ||
validations: | ||
required: true | ||
attributes: | ||
label: OS / Linux distribution | ||
placeholder: Windows 10, Ubuntu 20.04, Arch Linux, macOS 10.15... | ||
- type: input | ||
validations: | ||
required: true | ||
attributes: | ||
label: AnimeSnap version | ||
description: Run `AnimeSnap -V` to check. | ||
placeholder: "1.0" | ||
- type: textarea | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. This can be path, platform, shell... |
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,49 +1,49 @@ | ||
repos: | ||
- hooks: | ||
- id: check-ast | ||
- id: check-builtin-literals | ||
- id: check-case-conflict | ||
- id: check-merge-conflict | ||
- id: check-json | ||
- id: check-toml | ||
- id: check-yaml | ||
- id: end-of-file-fixer | ||
- id: mixed-line-ending | ||
- id: check-vcs-permalinks | ||
- id: check-shebang-scripts-are-executable | ||
repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
- hooks: | ||
- id: python-check-mock-methods | ||
- id: python-no-log-warn | ||
- id: python-use-type-annotations | ||
- id: rst-directive-colons | ||
- id: rst-inline-touching-normal | ||
repo: https://github.com/pre-commit/pygrep-hooks | ||
rev: v1.10.0 | ||
- hooks: | ||
- args: | ||
- --all | ||
id: pycln | ||
repo: https://github.com/hadialqattan/pycln | ||
rev: v2.2.2 | ||
- hooks: | ||
- id: black | ||
repo: https://github.com/psf/black | ||
rev: 23.9.1 | ||
- hooks: | ||
- args: | ||
- --profile | ||
- black | ||
id: isort | ||
language_version: '3.11' | ||
name: isort (python) | ||
repo: https://github.com/pycqa/isort | ||
rev: 5.12.0 | ||
- hooks: | ||
- id: commitizen | ||
- id: commitizen-branch | ||
stages: | ||
- push | ||
repo: https://github.com/commitizen-tools/commitizen | ||
rev: v3.10.0 | ||
- hooks: | ||
- id: check-ast | ||
- id: check-builtin-literals | ||
- id: check-case-conflict | ||
- id: check-merge-conflict | ||
- id: check-json | ||
- id: check-toml | ||
- id: check-yaml | ||
- id: end-of-file-fixer | ||
- id: mixed-line-ending | ||
- id: check-vcs-permalinks | ||
- id: check-shebang-scripts-are-executable | ||
repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
- hooks: | ||
- id: python-check-mock-methods | ||
- id: python-no-log-warn | ||
- id: python-use-type-annotations | ||
- id: rst-directive-colons | ||
- id: rst-inline-touching-normal | ||
repo: https://github.com/pre-commit/pygrep-hooks | ||
rev: v1.10.0 | ||
- hooks: | ||
- args: | ||
- --all | ||
id: pycln | ||
repo: https://github.com/hadialqattan/pycln | ||
rev: v2.2.2 | ||
- hooks: | ||
- id: black | ||
repo: https://github.com/psf/black | ||
rev: 23.9.1 | ||
- hooks: | ||
- args: | ||
- --profile | ||
- black | ||
id: isort | ||
language_version: "3.12" | ||
name: isort (python) | ||
repo: https://github.com/pycqa/isort | ||
rev: 5.12.0 | ||
- hooks: | ||
- id: commitizen | ||
- id: commitizen-branch | ||
stages: | ||
- push | ||
repo: https://github.com/commitizen-tools/commitizen | ||
rev: v3.10.0 |