Skip to content

Commit ec99798

Browse files
committed
More ruff tweaks
1 parent 59cd55e commit ec99798

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/python.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ jobs:
2121
pip install -r requirements-dev.txt
2222
- name: Lint with ruff
2323
run: |
24-
ruff . --select=E9,F63,F7,F82 --show-source
24+
ruff . --select=E9,F63,F7,F82
25+
ruff . --exit-zero
2526
- name: Check pyupgrade
2627
run: pyupgrade --py310-plus *.py tests/*.py
2728
- name: Check formatting with black

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ profile = "black"
1616
[tool.ruff]
1717
line-length = 100
1818
ignore = ["D203"]
19+
show-source = true

0 commit comments

Comments
 (0)