-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
104 lines (86 loc) · 2.17 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
[tool.ruff]
# Assume Python 3.10.
target-version = "py310"
line-length = 120
exclude = [
"__pypackages__",
"_build",
".bzr",
".direnv",
".eggs",
".env",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"buck-out",
"build",
"dist",
"env",
"logs",
"manage.py",
"media",
"migrations",
"node_modules",
"static",
"venv",
]
[tool.ruff.lint]
# Enable pycodestyle (`E`), Pyflakes (`F`), isort (`I`), and Django (`DJ`) codes by default.
select = ["E", "F", "I", "DJ"]
ignore = ["E501", "E731", "F403", "F405", "F811", "DJ008"]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
[tool.ruff.lint.isort]
# profile = "black"
# multi_line_output = 3
# skip = "env"
# skip_glob = "*/migrations/*"
# filter_files = true
[tool.ruff.lint.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
[tool.coverage.run]
branch = true
omit = ["tests/*"]
[tool.coverage.report]
exclude_lines = [
# Have to re-enable the standard pragma
"pragma: no cover",
# Don't complain about missing debug-only code:
"def __repr__",
"if self.debug:",
"if debug:",
"if DEBUG:",
# Don't complain if tests don't hit defensive assertion code:
"raise AssertionError",
"raise NotImplementedError",
# Don't complain if non-runnable code isn't run:
"if 0:",
"if False:",
"if __name__ == .__main__.:",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "digitaloxford.settings.dev"
addopts = "-v --nomigrations"
# filterwarnings = ["ignore::DeprecationWarning"]
testpaths = ["tests"]
# markers = ["pytest.mark.django_db"]