forked from p15670423/monkey
Modify isort configuration
This commit is contained in:
parent
661f3907a9
commit
d5b74d70b2
|
@ -1,6 +0,0 @@
|
||||||
[isort]
|
|
||||||
|
|
||||||
# Possible options: https://pycqa.github.io/isort/docs/configuration/options/
|
|
||||||
|
|
||||||
known_first_party=common,infection_monkey,monkey_island
|
|
||||||
skip=monkey/common/cloud/scoutsuite,monkey/monkey_island/cc/services/zero_trust/scoutsuite/data_parsing/rule_path_building/rule_path_creators_list.py,monkey/monkey_island/cc/ui,monkey/common/cloud/scoutsuite
|
|
|
@ -1,3 +1,14 @@
|
||||||
[tool.black]
|
[tool.black]
|
||||||
line-length = 100
|
line-length = 100
|
||||||
target-version = ['py37']
|
target-version = ['py37']
|
||||||
|
|
||||||
|
[tool.isort]
|
||||||
|
skip = "monkey/monkey_island/cc/ui"
|
||||||
|
known_first_party = "common,infection_monkey,monkey_island"
|
||||||
|
line_length = 100
|
||||||
|
### for compatibility with black
|
||||||
|
multi_line_output = 3
|
||||||
|
include_trailing_comma = true
|
||||||
|
force_grid_wrap = 0
|
||||||
|
use_parentheses = true
|
||||||
|
ensure_newline_before_comments = true
|
||||||
|
|
Loading…
Reference in New Issue