forked from linode/ansible_linode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (57 loc) · 1.33 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
54
55
56
57
58
59
60
[tool.isort]
profile = "black"
line_length = 80
[tool.black]
line-length = 80
target-version = [
"py37",
"py38",
"py39",
"py310",
"py311",
]
exclude = "plugins/module_utils/doc_fragments"
[tool.autoflake]
exclude = "plugins/module_utils/doc_fragments"
expand-star-imports = true
ignore-init-module-imports = true
ignore-pass-after-docstring = true
in-place = true
recursive = true
remove-all-unused-imports = true
[tool.pylint.main]
disable = [
"raw-checker-failed",
"bad-inline-option",
"locally-disabled",
"file-ignored",
"suppressed-message",
"useless-suppression",
"deprecated-pragma",
"use-symbolic-message-instead",
"protected-access",
"broad-exception-caught",
"unused-argument",
"no-name-in-module",
"import-error",
"inconsistent-return-statements",
"assignment-from-no-return",
"too-many-arguments",
"too-few-public-methods",
"duplicate-code",
"too-many-lines",
"too-many-branches",
"too-many-instance-attributes",
"anomalous-backslash-in-string",
"too-many-locals",
"consider-using-f-string",
"consider-using-dict-items",
"used-before-assignment",
"unused-variable",
"missing-timeout",
"use-sequence-for-iteration",
"broad-exception-raised",
"fixme"
]
py-version = "3.8"
extension-pkg-whitelist = "math"