forked from google/slo-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (31 loc) · 834 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
35
36
37
[build-system]
requires = ["setuptools>=42", "wheel"] # PEP 508 specifications.
build-backend = "setuptools.build_meta"
[tool.black]
# Using Black with other tools
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#using-black-with-other-tools
line-length = 88 # default: 88
[tool.isort]
# Make it compatible with black
profile = "black"
extend_skip = [
".pytype",
]
extend_skip_glob = [
"?venv*", # e.g. venv, .venv, venv3.11, .venv3.11
]
[tool.pylint]
ignore-patterns = [
"test_.*?py",
]
[tool.pylint.messages_control]
max-line-length = 88
disable = [
"logging-fstring-interpolation",
"import-error",
]
[tool.mypy]
# https://mypy.readthedocs.io/en/stable/config_file.html#using-a-pyproject-toml-file
ignore_missing_imports = true
[tool.pytype]
inputs = ['slo_generator']