Skip to content

Commit 83f0b34

Browse files
committed
docs: add toml file
1 parent 0d5f090 commit 83f0b34

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[tool.black]
2+
line-length = 88
3+
target-version = ["py313"]
4+
5+
exclude = '''
6+
/(
7+
myenv
8+
| storage
9+
| logs
10+
| .git
11+
| __pycache__
12+
)/
13+
'''
14+
15+
[tool.isort]
16+
profile = "black"
17+
line_length = 88
18+
skip = ["myenv", "storage", "logs", "__pycache__"]
19+
20+
[tool.pytest.ini_options]
21+
testpaths = ["tests"]

0 commit comments

Comments
 (0)