-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
112 lines (108 loc) · 1.78 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[tool.ruff]
target-version = "py310"
preview = true
fix = true
show-fixes = true
lint.extend-select = [
# flake8-async
"ASYNC",
# flake8-bugbear
"B",
# flake8-comprehensions
"C4",
# mmcabe
"C90",
# flake8-django
"DJ",
"E",
# pyflakes, pycodestyle
"F",
# flake8-boolean-trap
"FBT",
# isort
"I",
# flake8-no-pep420
"INP",
# flake8-gettext
"INT",
# flake8-implicit-string-concatenation
"ISC",
# flake8-logging
"LOG",
# pygrep-hooks
"PGH",
# flake8-pie
"PIE",
# pylint
"PLC",
"PLE",
"PLW",
# flake8-return
"RET",
# ruff
"RUF005",
"RUF006",
"RUF007",
"RUF008",
"RUF009",
"RUF010",
"RUF015",
"RUF016",
"RUF017",
"RUF100",
"RUF200",
# flake8-slots
"SLOT",
# flake8-tidy-imports
"TID",
# pyupgrade
"UP",
"W",
# flake8-2020
"YTT",
]
lint.extend-ignore = [
# Allow zip() without strict=
"B905",
# No line length errors
"E501",
# Percent-formatting is fine
"UP031",
]
lint.per-file-ignores."*/migrat*/*" = [
# Allow using PascalCase model names in migrations
"N806",
# Ignore the fact that migration files are invalid module names
"N999",
]
lint.per-file-ignores."cli/*" = [
"INP",
]
lint.per-file-ignores."conf/*" = [
# Allow Python files in conf/ without __init__
"INP",
]
lint.per-file-ignores."fabfile.py" = [
# No boolean trap in function definitions in the fabfile
"FBT002",
]
lint.per-file-ignores."scripts/*" = [
# Allow Python files in scripts/ without __init__
"INP",
]
lint.isort.combine-as-imports = true
lint.isort.lines-after-imports = 2
lint.mccabe.max-complexity = 15
[tool.coverage.run]
branch = true
omit = [
"*migrate*",
"*migrations*",
"*venv*",
]
[tool.coverage.report]
skip_covered = true
show_missing = true
[tool.pyright]
venvPath = ".venv"
venv = "."