Skip to content

Commit

Permalink
Add linters and settings
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-f-cruz committed May 20, 2024
1 parent 6f66ca7 commit cb14089
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ classifiers = [
dev = [
"datamodel-code-generator",
"pytest",
"black"
"black",
"isort",
"codespell",

]
jupyter = [
"ipykernel",
Expand Down Expand Up @@ -71,3 +74,11 @@ extend-exclude = '''
| reflex-generator
)
'''

[tool.isort]
line_length = 120
profile = "black"

[tool.codespell]
skip = '.git,*.pdf,*.svg'
ignore-words-list = 'nd'

0 comments on commit cb14089

Please sign in to comment.