Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ ignore =
E302,E305,
# closing bracket does not match indentation of opening bracket's line
E123,
# whitespace before ':'
E203,
# multiple spaces before operator
E221,
# line break before binary operator
Expand Down Expand Up @@ -36,4 +38,4 @@ ignore =
E226,
# test for membership should be 'not in'
E713,
max-line-length=120
max-line-length=100
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ repos:
rev: v0.9.10
hooks:
- id: ruff
- id: ruff-format

- repo: https://github.com/pycqa/flake8
rev: 7.1.2
Expand Down
Loading
Loading