-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (66 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
79 lines (66 loc) · 1.63 KB
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
[tool.ruff]
# Assume Python 3.11.
target-version = "py311"
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.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "core.settings.dev"
addopts = "-v --nomigrations"
# filterwarnings = ["ignore::DeprecationWarning"]
testpaths = ["tests"]
# markers = ["pytest.mark.django_db"]