forked from numirias/semshi
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 811 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 811 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
[tool.pylint.'MESSAGES CONTROL']
disable = [
"missing-docstring",
"invalid-name",
"too-few-public-methods",
"too-many-public-methods",
"fixme",
"redefined-builtin",
"redefined-outer-name",
"too-many-return-statements",
"import-error",
"too-many-branches",
"too-many-arguments",
"too-many-instance-attributes",
"no-member",
]
[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/options.html
profile = "black"
single_line_exclusions = ['typing', 'typing_extensions']
extra_standard_library = ['typing_extensions']
known_third_party = []
skip_glob = ['test/data/*.py']
[tool.yapf]
# see https://github.com/google/yapf#knobs
based_on_style = "pep8"
indent_width = 4
spaces_before_comment = 2
[tool.yapfignore]
ignore_patterns = ['test/data/*.py']