Skip to content

Commit 158b789

Browse files
committed
STY: Be more selective with checks used
This commit avoids the `--select ALL` antipattern. This is an anti-pattern as, using `ALL` changes the checks run whenever any of the underlying styles are updated.
1 parent 06f5d48 commit 158b789

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ jobs:
4848
# Tell us what version we are using
4949
poetry run ruff version
5050
# Check the source file, ignore type annotations (ANN) for now.
51-
poetry run ruff check numpy_financial/ --ignore F403,Q000,PLR0913,ERA001,TRY003,EM101,EM102,RET505,D203,D213,ANN --select ALL
51+
poetry run ruff check numpy_financial/ --ignore F403 --select E,F,B,I

0 commit comments

Comments
 (0)