-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(linting): Add Taskfile tasks to run linters. #76
Changes from 28 commits
ba6986c
f0ec0b0
0366aec
66d5945
6087f0d
c4f00f6
79ddd8c
d2e3ac2
eb460cd
9dd98ff
6a81eb7
b64d77e
7f1d61d
151cf8f
eba2157
51f8726
95fd572
0a2a971
1ddfc77
b0c0632
75ad8f6
be7c738
469a294
9b42c6d
1f1ba36
076d02b
c1da5e6
952be37
22afa5b
a9f3441
6604c01
cdc90da
32754d6
99f56bf
3d37bc3
b2e7e35
f0fd719
8189c1d
083d397
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# yamllint disable-line rule:line-length | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/BlankSpruce/gersemi/master/gersemi/configuration.schema.json | ||
|
||
line_length: 100 | ||
list_expansion: "favour-expansion" |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Only indentation and quote changes |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,41 @@ | ||
name: "Bug Report" | ||
description: Report software deficiencies | ||
description: "Report software deficiencies" | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Use this form to report any functional or performance bugs you've found in the software. | ||
|
||
Be sure to check if your [issue](https://github.com/y-scope/clp-ffi-py/issues) has already been reported. | ||
- type: "markdown" | ||
attributes: | ||
value: | | ||
Use this form to report any functional or performance bugs you've found in the software. | ||
|
||
- type: textarea | ||
attributes: | ||
label: Bug | ||
description: "Describe what's wrong and if applicable, what you expected instead." | ||
validations: | ||
required: true | ||
Be sure to check if your [issue](https://github.com/y-scope/clp-ffi-py/issues) has already | ||
been reported. | ||
haiqi96 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
- type: input | ||
attributes: | ||
label: clp-ffi-py version | ||
description: "The release version number or development commit hash that has the bug." | ||
placeholder: "Version number or commit hash" | ||
validations: | ||
required: true | ||
- type: "textarea" | ||
attributes: | ||
label: "Bug" | ||
description: "Describe what's wrong and if applicable, what you expected instead." | ||
validations: | ||
required: true | ||
haiqi96 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
- type: textarea | ||
attributes: | ||
label: Environment | ||
description: "The environment in which you're using clp-ffi-py." | ||
placeholder: "OS version, docker version, etc." | ||
validations: | ||
required: true | ||
- type: "input" | ||
attributes: | ||
label: "clp-ffi-py version" | ||
description: "The release version number or development commit hash that has the bug." | ||
placeholder: "Version number or commit hash" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Reproduction steps | ||
description: "List each step required to reproduce the bug." | ||
validations: | ||
required: true | ||
- type: "textarea" | ||
attributes: | ||
label: "Environment" | ||
description: "The environment in which you're using clp-ffi-py." | ||
placeholder: "OS version, docker version, etc." | ||
validations: | ||
required: true | ||
haiqi96 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
- type: "textarea" | ||
attributes: | ||
label: "Reproduction steps" | ||
description: "List each step required to reproduce the bug." | ||
validations: | ||
required: true | ||
haiqi96 marked this conversation as resolved.
Show resolved
Hide resolved
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Only indentation changes |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
name: "Feature/Change Request" | ||
description: Request a feature or change | ||
description: "Request a feature or change" | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Use this form to request a feature/change in the software, or the project as a whole. | ||
- type: "markdown" | ||
attributes: | ||
value: | | ||
Use this form to request a feature/change in the software, or the project as a whole. | ||
|
||
- type: textarea | ||
attributes: | ||
label: Request | ||
description: "Describe your request and why it's important." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Possible implementation | ||
description: "Describe any implementations you have in mind." | ||
validations: | ||
required: true | ||
- type: "textarea" | ||
attributes: | ||
label: "Request" | ||
description: "Describe your request and why it's important." | ||
validations: | ||
required: true | ||
|
||
- type: "textarea" | ||
attributes: | ||
label: "Possible implementation" | ||
description: "Describe any implementations you have in mind." | ||
validations: | ||
required: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Straight copy from https://github.com/y-scope/spider