-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruff.toml
More file actions
53 lines (48 loc) · 835 Bytes
/
Copy pathruff.toml
File metadata and controls
53 lines (48 loc) · 835 Bytes
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
line-length = 120
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
]
[lint]
ignore = ["D203","D100","D101","D400","D401","D106", "F403","F405","D403","D104","B008", "B023", "B904"]
select = [
'E',
'B',
'I',
'F',
'W',
'A'
]
[lint.per-file-ignores]
"tests/*" = ["D102","D103"]
"examples.py" = ["ALL"]
[lint.pydocstyle]
convention = "google"
[format]
# Like Black, use double quotes for strings.
quote-style = "single"
line-ending = "auto"