-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathruff.toml
More file actions
52 lines (49 loc) · 2.16 KB
/
ruff.toml
File metadata and controls
52 lines (49 loc) · 2.16 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
line-length = 110
lint.select = ["ALL"]
lint.ignore = [
"COM812", # missing-trailing-comma
"D203", # 1 blank line required before class docstring
"D205", # 1 blank line required between summary line and description
"D213", # incompatible. Ignoring `multi-line-summary-second-line`
"TRY003", # Avoid specifying long messages outside the exception class
"ANN", # Missing type annotation
"D", # Missing type annotation
"N", # Missing type annotation
"PLR2004", # Magic value used in comparison
"PLC0415", # `import` should be at the top-level of a file
"INP001", # implicit namespace package
"RUF015", # Prefer `next(...)` over single element slice
]
[lint.extend-per-file-ignores]
"docs/source/conf.py" = [
"A001", # builtin-variable-shadowing
"D100", # Missing docstring in public module
"E402", # Module level import not at top of file
"ERA001", # Found commented-out code
"ERA001", # Found commented-out code
"EXE001", # Shebang is present but file is not executable
]
"test_*.py" = [
"ANN001", # Missing type annotation for function argument
"ANN201", # Missing return type annotation for public function
"ANN202", # Missing return type annotation for private function
"INP001", # File is part of an implicit namespace package
"PD901", # Avoid using the generic variable name `df` for DataFrames
"S101", # Use of assert detected
]
# nbqa-ruff acts on converted .py so we cannot glob .ipynb :-/
# https://github.com/nbQA-dev/nbQA/issues/823
"notebooks/*" = [
"ANN001", # Missing type annotation for function argument
"ANN201", # Missing return type annotation for public function
"B018", # Found useless expression. Either assign it to a variable or remove it
"D100", # Missing docstring in public module
"D103", # Missing docstring in public function
"E402", # Module level import not at top of file
"FBT003", # Boolean positional value in function call
"INP001", # File is part of an implicit namespace package
"PD901", # Avoid using the generic variable name `df` for DataFrames
"T201", # `print` found"
]
[lint.pycodestyle]
max-doc-length = 180