-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (29 loc) · 933 Bytes
/
pyproject.toml
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
# black-compatible configurations for various Python code formatters.
# Assembled from https://black.readthedocs.io/en/stable/compatible_configs.html
[tool.black]
line_length = 120
target_version = ["py27", "py38"]
experimental_string_processing = true
required_version = "20.8b1"
[tool.autopep8]
exclude = ".git,__pycache__"
max-line-length = 120
ignore = "E203,E501,W6"
[tool.isort]
profile = "black"
py_version = "all"
known_first_party = ["src", "ss_instrumentation", "SSInstrumentation"]
# line_length is intentionally small, to ensure each imported object gets its
# own line.
line_length = 10
multi_line_output = 3
include_trailing_comma = true
[tool.pylint.messages_control]
disable = "all"
# Messages explained here: https://github.com/janjur/readable-pylint-messages
# Please:
# - Add items in alphabetical order
# - Ensure trailing comma on each line
enable = """py3k,"""
[tool.pylint.format]
max-line-length = "120"