-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
ruff.toml
42 lines (39 loc) · 1.02 KB
/
ruff.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
# Allow unused variables when underscore-prefixed.
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
target-version = "py39"
line-length = 120
extend-exclude=[
".git,",
"__pycache__",
"build",
"tools/**",
]
lint.select = [
"ALL",
]
lint.extend-ignore = [
"ANN", # Ignore missing annotations
"COM812", # May cause conflicts when used with the formatter
"D", # Ignore docstrings
"E501", # Line too long
"E741", # Ambiguous variable name
"ISC001", # May cause conflicts when used with the formatter
"PD011", # Use `.to_numpy()` instead of `.values`
"T201", # Print statements
]
[lint.per-file-ignores]
"exts/rawfiles.py" = [
"INP001", # Part of an implicit namespace package
]
"posts/2024/eclipse_helpers.py" = [
"INP001", # Part of an implicit namespace package
]
"docs/conf.py" = [
"INP001", # Part of an implicit namespace package
]
[lint.pydocstyle]
convention = "numpy"
[format]
docstring-code-format = true
indent-style = "space"
quote-style = "double"