Skip to content

Commit cb14089

Browse files
committed
Add linters and settings
1 parent 6f66ca7 commit cb14089

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

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",
@@ -71,3 +74,11 @@ extend-exclude = '''
7174
| reflex-generator
7275
)
7376
'''
77+
78+
[tool.isort]
79+
line_length = 120
80+
profile = "black"
81+
82+
[tool.codespell]
83+
skip = '.git,*.pdf,*.svg'
84+
ignore-words-list = 'nd'

0 commit comments

Comments
 (0)