1
0
Fork 0
mirror of synced 2024-05-19 19:52:41 +12:00

fixed ruff instructions

This commit is contained in:
Piotr Migdal 2024-01-15 15:15:15 +01:00
parent 8e6103952c
commit c6c9f2d94d
2 changed files with 2 additions and 3 deletions

View file

@ -48,7 +48,7 @@ jobs:
- name: Critical ruff lint
run: |
ruff check --format=github --select=E9,F63,F7,F82 .
ruff check --select=E9,F63,F7,F82 .
- name: Test with pytest
run: |
@ -62,4 +62,4 @@ jobs:
- name: Full ruff lint
run: |
ruff check --format=github . --exit-zero
ruff check . --exit-zero

View file

@ -92,7 +92,6 @@ exclude = ["scripts/tests"]
external = ["FURB123"]
flake8-annotations = {"allow-star-arg-any" = true, "suppress-dummy-args" = true}
flake8-pytest-style = {"parametrize-values-type" = "tuple", "mark-parentheses" = false}
format = "grouped"
ignore = ["ANN101","B904","N818","RET505"]
line-length = 120
per-file-ignores={"tests/*"=["ANN","S101","S105","S106"], "scripts/*"=["INP","S105","S106"]}