Files
capa/.github/ruff.toml
Pratham Chauhan efb07fafb3 fix
2023-04-05 22:16:00 +05:30

11 lines
231 B
TOML

# Enable pycodestyle (`E`) codes
select = ["E"]
# E402 module level import not at top of file
# E722 do not use bare 'except'
ignore = ["E402", "E722"]
exclude = ["*_pb2.py", "*_pb2.pyi"]
# Same as pycodestyle.
line-length = 180