Skip to content

Commit 68c1b54

Browse files
committed
chore: mypy and pylint have been replaced by black and isort
1 parent bf6080d commit 68c1b54

File tree

3 files changed

+21
-199
lines changed

3 files changed

+21
-199
lines changed

chart/mypy.ini

Lines changed: 0 additions & 6 deletions
This file was deleted.

chart/pylintrc

Lines changed: 0 additions & 193 deletions
This file was deleted.

chart/pyproject.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[tool.isort]
2+
profile = "black"
3+
line_length = 79
4+
known_first_party = ["kekkai", "chart"]
5+
6+
[tool.black]
7+
line-length = 79
8+
target-version = ['py312']
9+
include = '\.pyi?$'
10+
exclude = '''
11+
/(
12+
\.git
13+
| \.mypy_cache
14+
| \.venv
15+
| build
16+
| dist
17+
| Dockerfile
18+
| .*\.md$
19+
)/
20+
'''
21+

0 commit comments

Comments
 (0)