mirror of https://github.com/pwndbg/pwndbg.git
Minor linter/formatter configuration changes (#1105)
* Don't format gdb-pt-dump with black * Move isort configuration into pyproject.toml * Exclude gdb-pt-dump from flake8 * Set flake8 max line length to 100pull/1107/head
parent
cf2c3eede8
commit
340dd2d43b
@ -1,4 +0,0 @@
|
||||
[settings]
|
||||
indent=' '
|
||||
force_single_line = 1
|
||||
known_third_party=capstone,unicorn,six,psutil,pycparser,gdb
|
||||
@ -1,6 +1,9 @@
|
||||
[tool.black]
|
||||
line-length = 100
|
||||
extend-exclude = "gdb-pt-dump"
|
||||
|
||||
[tool.isort]
|
||||
profile = "black"
|
||||
|
||||
force_single_line = true
|
||||
known_third_party = ["capstone", "unicorn", "six", "psutil", "pycparser", "gdb"]
|
||||
extend_skip_glob = ["gdb-pt-dump/*"]
|
||||
|
||||
Loading…
Reference in new issue