summaryrefslogtreecommitdiff
path: root/.ruff.toml
blob: 9018176465a799ab972008881d1722a614ef2744 (plain)
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
cache-dir = "~/.cache/ruff"
indent-width = 4
line-length = 79
target-version = "py314"

[lint]
select = ["ALL"]
ignore = [
    "BLE001",
    "COM812",
    "D2",
    "D4",
]

# ARG005 - Unused lambda argument: `args`
# BLE001 - Do not catch blind exception: `Exception`
# D101 - Missing docstring in public class
# D102 - Missing docstring in public method
# E721 - Use `is` and `is not` for type comparisons, or `isinstance()` for isinstance checks
# ERA001 - Found commented-out code
# FBT001 - Boolean-typed positional argument in function definition
# FBT002 - Boolean default positional argument in function definition
# INP001 - File `beinc_weechat.py` is part of an implicit namespace package. Add an `__init__.py`
# PT008 - Use `return_value=` instead of patching with `lambda`
# PLR2004 - Magic value used in comparison, consider replacing `200` with a constant variable
# RUF012 - Mutable class attributes should be annotated with `typing.ClassVar`
# RUF013 - PEP 484 prohibits implicit `Optional`
# S101 - Use of `assert` detected
# S324 - Probable use of insecure hash functions in `hashlib`: `md5`
# T201 - `print` found
# TRY003 - Avoid specifying long messages outside the exception class
# TRY300 - Consider moving this statement to an `else` block
# UP020 - Use builtin `open`

# 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"