File size: 305 Bytes
16c8067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[tool.ruff]
target-version = "py38"
line-length = 120

extend-select = [
  "B",
  "C",
  "I",
  "SIM",
  "INP001",
  "W"
]

ignore = [
  "E501",
  "F401",
  "C901",
]

extend-exclude = [
  "face_detection/*.py",
]

[tool.ruff.per-file-ignores]

"models/__init__.py" = [
  "F401", # "Imported but unused"
]