We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
E721
F541
1 parent 2950600 commit a47c8a7Copy full SHA for a47c8a7
.github/workflows/checks.yml
@@ -82,8 +82,11 @@ jobs:
82
poetry --version
83
- name: Install dependencies and library
84
run: poetry install
85
+ # We ignore the following rules for now:
86
+ # E721 (https://docs.astral.sh/ruff/rules/type-comparison)
87
+ # F541 (https://docs.astral.sh/ruff/rules/f-string-missing-placeholders)
88
- name: Check linting
- run: poetry run ruff check .
89
+ run: poetry run ruff check . --ignore E721 --ignore F541
90
91
tests:
92
runs-on: ubuntu-latest
Makefile
@@ -44,7 +44,7 @@ lint:
44
for lib in $(LIBRARIES); do \
45
cd ${WORKDIR}/$$lib && \
46
poetry run ruff --version && \
47
- poetry run ruff check ./; \
+ poetry run ruff check . --ignore E721 --ignore F541; \
48
done
49
50
test:
0 commit comments