File size: 405 Bytes
6f8bc75
 
 
 
 
 
 
de68d43
 
 
6f8bc75
 
 
 
 
 
 
 
de68d43
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tool.ruff]
line-length = 100

[tool.ruff.lint]
select = ["ALL"]
ignore = [
  "CPY001", # copyright above code
  "ANN101", # self annotations
  "ANN102", # cls annotations
  "D",      # sphinx not support 
  ]

[tool.mypy]
disallow_untyped_defs = true
show_error_codes = true
no_implicit_optional = true
warn_return_any = true
warn_unused_ignores = true
python_version = "3.10"
plugins = ["pydantic.mypy"]