-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.09 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "cabal-macros"
[tool.black]
preview = true
[tool.isort]
profile = "black"
force_single_line = false
no_inline_sort = true
sort_reexports = true
float_to_top = true
combine_star = true
remove_redundant_aliases = true
combine_as_imports = true
no_sections = true
[tool.autoflake]
remove-unused-variables = true
remove-all-unused-imports = true
remove-duplicate-keys = true
ignore-init-module-imports = true
recursive = true
in-place = true
[tool.pylint]
max-line-length = 88
[tool.pylint.'MESSAGES CONTROL']
recursive = true
disable = [
"invalid-name",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"nonlocal-and-global",
"subprocess-run-check",
"broad-exception-raised",
"line-too-long",
"too-many-locals",
"wrong-import-order",
"too-many-arguments",
"too-many-instance-attributes",
"too-many-boolean-expressions",
"fixme",
"too-many-public-methods",
"too-few-public-methods",
"too-many-statements",
"global-statement",
"bare-except",
"too-many-branches",
"duplicate-code"
]