-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 817 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.black]
line-length = 127
target-version = ["py39"]
exclude = "venv"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 127
skip = "venv"
profile = "black"
[tool.pylint.MASTER]
ignore = "venv"
disable = ["C0114", "R0201", "C0330"] # Hanging indentation
max-attributes = 12
max-branches = 20
[tool.pylint.FORMAT]
max-line-length = 127
[tool.pylint.SIMILARITIES]
# Minimum lines number of a similarity.
min-similarity-lines = 10
# Ignore comments when computing similarities.
ignore-comments = "yes"
# Ignore docstrings when computing similarities.
ignore-docstrings = "yes"
# Ignore imports when computing similarities.
ignore-imports = "yes"
[tool.pylint.messages_control]
disable = "C0330, C0326"