mirror of
https://github.com/mandiant/capa.git
synced 2025-12-15 17:11:06 -08:00
11 lines
231 B
TOML
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
|