Benjamin Bossan commited on
Commit
ba718e9
1 Parent(s): 132e2aa

Add a pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +12 -0
pyproject.toml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.black]
2
+ line-length = 88
3
+ target_version = ['py38', 'py39', 'py310', 'py311']
4
+ preview = true
5
+
6
+ [tool.isort]
7
+ profile = "black"
8
+
9
+ [tool.mypy]
10
+ exclude = "(\\w+/)*test_\\w+\\.py$"
11
+ ignore_missing_imports = true
12
+ no_implicit_optional = true