CK-Explorer commited on
Commit
596313e
·
1 Parent(s): 25c5a9d

build: add ruff style and mypy checking

Browse files
Files changed (1) hide show
  1. pyproject.toml +9 -0
pyproject.toml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ [tool.ruff]
2
+ line-length = 88
3
+ target-version = "py311"
4
+
5
+ [tool.ruff.lint]
6
+ select = ["E", "F", "B", "I", "RUF"]
7
+
8
+ [tool.mypy]
9
+ strict = true