-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruff.toml
More file actions
45 lines (36 loc) · 995 Bytes
/
ruff.toml
File metadata and controls
45 lines (36 loc) · 995 Bytes
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
# Set the maximum line length to 88.
target-version = "py39"
line-length = 88
indent-width = 4
include = ["*.py"]
exclude = [
"**/.git",
"**/.hg",
"**/.mypy_cache",
"**/.tox",
"**/.venv",
"_build",
"buck-out",
"build",
"dist",
"**/migrations/*.py",
]
[lint]
# Add the `line-too-long` rule to the enforced rule set. By default, Ruff omits rules that
# overlap with the use of a formatter, like Black, but we can override this behavior by
# explicitly adding the rule.
select = ["F", "E", "W", "Q", "I", "I001"]
ignore = ["E501"]
[format]
# Enable reformatting of code snippets in docstrings.
docstring-code-format = true
# 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"
[lint.isort]
combine-as-imports = true