Skip to content
Open
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
7 changes: 6 additions & 1 deletion .flake8rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,9 @@ max-line-length = 120

# N802: Function names have to be lower case. This is for GRPC service.
# E999: Mistaken error see https://github.com/PyCQA/pycodestyle/issues/584
ignore = N802,E999,W503
# T499: Output from `flake8-mypy`, which has been deprecated since 2020 and is
# stuck on an older interpreter under Ubuntu noble. The dedicated `mypy` linter
# entry in `.arclint` already runs `mypy --config-file=mypy.ini` against the
# proper interpreter, so flake8-mypy is redundant here. Silencing T499 avoids
# the broken-plugin output without touching the linter image. See issue #1955.
ignore = N802,E999,W503,T499
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[mypy]
python_version = 3.8
python_version = 3.12
show_column_numbers = True
show_error_context = False

Expand Down
Loading