Skip to content

Commit

Permalink
add pyproject settings for ruff/isort/black
Browse files Browse the repository at this point in the history
  • Loading branch information
biobootloader committed Feb 14, 2024
1 parent 12dbdf1 commit e907803
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,15 @@ Issues = "https://github.com/AbanteAI/rawdog/issues"

[project.scripts]
rawdog = "rawdog.__main__:main"

[tool.ruff]
line-length = 120
extend-exclude = ["examples", "src/rawdog/prompts.py"]

[tool.isort]
profile = "black"
extend_skip = ["examples"]

[tool.black]
preview = "true"
extend-exclude = "examples"

0 comments on commit e907803

Please sign in to comment.