File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,4 +3,9 @@ max-line-length = 120
33
44# N802: Function names have to be lower case. This is for GRPC service.
55# E999: Mistaken error see https://github.com/PyCQA/pycodestyle/issues/584
6- ignore = N802,E999,W503
6+ # T499: Output from `flake8-mypy`, which has been deprecated since 2020 and is
7+ # stuck on an older interpreter under Ubuntu noble. The dedicated `mypy` linter
8+ # entry in `.arclint` already runs `mypy --config-file=mypy.ini` against the
9+ # proper interpreter, so flake8-mypy is redundant here. Silencing T499 avoids
10+ # the broken-plugin output without touching the linter image. See issue #1955.
11+ ignore = N802,E999,W503,T499
Original file line number Diff line number Diff line change 11[mypy]
2- python_version = 3.8
2+ python_version = 3.12
33show_column_numbers = True
44show_error_context = False
55
You can’t perform that action at this time.
0 commit comments