mirror of
https://github.com/mandiant/capa.git
synced 2025-12-12 23:59:48 -08:00
11 lines
301 B
INI
11 lines
301 B
INI
[pycodestyle]
|
|
; E402: module level import not at top of file
|
|
; W503: line break before binary operator
|
|
; E231 missing whitespace after ',' (emitted by black)
|
|
; E203 whitespace before ':' (emitted by black)
|
|
ignore = E402,W503,E203,E231
|
|
max-line-length = 160
|
|
statistics = True
|
|
count = True
|
|
exclude = .*
|