forked from Carreau/undefined
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruff.toml
More file actions
22 lines (20 loc) · 657 Bytes
/
ruff.toml
File metadata and controls
22 lines (20 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
exclude = [".git"]
line-length = 88
target-version = "py39"
[lint]
select = ["ALL"]
fixable = ["ALL"]
ignore = [
"ANN101", # Missing type annotation for `self` in method
"COM812", # missing-trailing-comma
"D100", # Missing docstring in public module
"D101", # Missing docstring in public class
"D102", # Missing docstring in public method
"D103", # Missing docstring in public function
"D104", # Missing docstring in public package
"D203", # one-blank-line-before-class
"ISC001", # single-line-implicit-string-concatenation
"S101", # Use of `assert` detected
]
[lint.pydocstyle]
convention = "pep257"