Skip to content

Commit

Permalink
Update .ruff.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Limych committed May 8, 2024
1 parent 4888d5e commit 3ba3282
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/py-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
pylint ${{ env.package }} tests
tests:
name: Test package on Python ${{ matrix.python-version }}
name: "Test package"
needs: lint
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

target-version = "py312"

select = [
lint.select = [
"B007", # Loop control variable {name} not used within loop body
"B014", # Exception handler with duplicate exception
"C", # complexity
Expand All @@ -26,7 +26,7 @@ select = [
"W", # pycodestyle
]

ignore = [
lint.ignore = [
"D202", # No blank lines allowed after function docstring
"D203", # 1 blank line required before class docstring
"D213", # Multi-line docstring summary should start at the second line
Expand Down

0 comments on commit 3ba3282

Please sign in to comment.