Skip to content

Commit 5e8a468

Browse files
committed
Add linters and settings
1 parent 24b8977 commit 5e8a468

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

pyproject.toml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ classifiers = [
3232
dev = [
3333
"datamodel-code-generator",
3434
"pytest",
35-
"black"
35+
"black",
36+
"isort",
37+
"codespell",
38+
3639
]
3740
jupyter = [
3841
"ipykernel",
@@ -68,3 +71,11 @@ extend-exclude = '''
6871
| reflex-generator
6972
)
7073
'''
74+
75+
[tool.isort]
76+
line_length = 120
77+
profile = "black"
78+
79+
[tool.codespell]
80+
skip = '.git,*.pdf,*.svg'
81+
ignore-words-list = 'nd'

0 commit comments

Comments
 (0)