Skip to content

Commit

Permalink
Adds ruff support in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
ilumsden committed Apr 26, 2024
1 parent f8c212b commit b4762a8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,23 @@ version = "2024.1.0"
description = "A Python-based toolkit for analyzing ensemble performance data."
license = "MIT"

[tool.ruff]
line-length = 88
target-version = 'py37'
include = ['\.pyi?$']
exclude = [
".eggs",
".git",
".hg",
".mypy_cache",
".tox",
".venv",
"_build",
"buck-out",
"build",
"dist",
]

[tool.black]
line-length = 88
target-version = ['py37']
Expand Down

0 comments on commit b4762a8

Please sign in to comment.