neuralbroker commited on
Commit
ca48966
·
verified ·
1 Parent(s): 4fe8118

Update pyproject.toml (v2.1 production)

Browse files
Files changed (1) hide show
  1. pyproject.toml +18 -0
pyproject.toml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.ruff]
2
+ target-version = "py311"
3
+ line-length = 140
4
+ extend-exclude = ["scripts", "llama.cpp"]
5
+
6
+ [tool.ruff.lint]
7
+ select = ["E", "F", "W", "I", "N", "UP", "B", "C4", "SIM"]
8
+
9
+ [tool.ruff.format]
10
+ quote-style = "double"
11
+ indent-style = "space"
12
+
13
+ [tool.mypy]
14
+ python_version = "3.11"
15
+ warn_return_any = true
16
+ warn_unused_configs = true
17
+ ignore_missing_imports = true
18
+ follow_imports = "skip"