forked from fury-gl/fury
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruff.toml
More file actions
44 lines (39 loc) · 741 Bytes
/
ruff.toml
File metadata and controls
44 lines (39 loc) · 741 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
target-version = "py310"
line-length = 88
force-exclude = true
extend-exclude = [
"__pycache__",
"build",
"_version.py",
"docs/experimental/**",
]
[lint]
select = [
"F",
"E",
"C",
"W",
"B",
"I",
]
ignore = [
"B905",
"C901",
"E203"
]
[lint.extend-per-file-ignores]
"docs/examples/**" = ["I001"]
"docs/source/conf.py" = ["E402"]
[lint.flake8-quotes]
inline-quotes = "double"
[lint.isort]
case-sensitive = true
combine-as-imports = true
force-sort-within-sections = true
known-first-party = ["fury"]
no-sections = false
order-by-type = true
relative-imports-order = "closest-to-furthest"
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
[format]
quote-style = "double"