We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf6080d commit 68c1b54Copy full SHA for 68c1b54
chart/mypy.ini
chart/pylintrc
chart/pyproject.toml
@@ -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