File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ pyroma:
1515pep8 :
1616 full : true
1717 # ignore rules that conflict with ruff formatter
18+ # E203: https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#slices
19+ # E501: https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
20+ # W503: https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes
1821 disable : ['E203', 'E501', 'W503']
1922
2023mypy :
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ exclude_lines =
2323
2424[pycodestyle]
2525# ignore rules that conflict with ruff formatter
26+ # E203: https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#slices
27+ # E501: https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
28+ # W503: https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes
2629ignore = E203,E501,W503
2730
2831[pydocstyle]
You can’t perform that action at this time.
0 commit comments