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
|
cache-dir = "~/.cache/ruff"
indent-width = 4
line-length = 79
target-version = "py310"
namespace-packages = ["tests"]
[lint]
select = ["ALL"]
ignore = ["BLE001", "COM812", "D203", "D205", "D212", "D400", "D401", "D403", "D415", "FBT001", "FBT002", "PTH111", "S101", "UP020", "D200", "D402", "EM101", "EM102", "FBT003", "PLR0913", "PLR2004", "PLW2901", "S603", "T201", "TRY003", "TRY400"]
# BLE001 - Do not catch blind exception: `Exception`
# COM812 - Trailing comma missing
# D205 - 1 blank line required between summary line and description
# D212 - Multi-line docstring summary should start at the first line
# D400 - First line should end with a period
# D401 - First line of docstring should be in imperative mood
# D403 - First word of the first line should be capitalized: `str` -> `Str`
# D415 - First line should end with a period, question mark, or exclamation point
# FBT001 - Boolean-typed positional argument in function definition
# FBT002 - Boolean default positional argument in function definition
# PTH111 - `os.path.expanduser()` should be replaced by `Path.expanduser()`
# S101 - Use of `assert` detected
# TRY300 - Consider moving this statement to an `else` block
# TRY400 - Use `logging.exception` instead of `logging.error`
# UP020 - Use builtin `open`
# Project specific
# EM101 - Exception must not use a string literal, assign to variable first
# EM102 - Exception must not use an f-string literal, assign to variable first
# FBT003 - Boolean positional value in function call
# PLR0913 - Too many arguments in function definition
# PLR2004 - Magic value used in comparison, consider replacing `X` with a constant variable
# PLW2901 - `for` loop variable `value` overwritten by assignment target
# S603 - `subprocess` call: check for execution of untrusted input
# T201 - `print` found
# TRY003 - Avoid specifying long messages outside the exception class
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
[format]
# Like Black, use double quotes for strings.
quote-style = "single"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = true
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
# Enable auto-formatting of code examples in docstrings. Markdown,
# reStructuredText code/literal blocks and doctests are all supported.
#
# This is currently disabled by default, but it is planned for this
# to be opt-out in the future.
docstring-code-format = false
# Set the line length limit used when formatting code snippets in
# docstrings.
#
# This only has an effect when the `docstring-code-format` setting is
# enabled.
docstring-code-line-length = "dynamic"
[lint.flake8-quotes]
inline-quotes = "single"
|