forked from AeonOrg/Aeon-MLTB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruff.toml
More file actions
36 lines (33 loc) · 688 Bytes
/
ruff.toml
File metadata and controls
36 lines (33 loc) · 688 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
fix = true
unsafe-fixes = true
line-length = 85
target-version = "py310"
[lint.isort]
length-sort = true
[lint]
select = [
"FURB", # refurb
"I", # isort
"E", # pycodestyle: error
"W", # pycodestyle: warning
"UP", # pyupgrade
"F", # pyflakes
"SIM", # flake8-simplify
"RET", # flake8-return
"C4", # flake8-comprehensions
"PERF", # perflint
"RUF", # ruff
"TID", # flake8-tidy-imports
"TCH", # flake8-type-checking
"FA", # flake8-future-annotations
"PL", # pylint
"ARG", # flake8-unused-arguments
]
ignore = [
"PLR2004",
"PLR0912",
"PLR0915",
"PLR0911",
"PLR0913",
"E501",
]