Skip to content

Commit

Permalink
Remove ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrada committed Sep 11, 2024
1 parent 3e81b7f commit f7d0882
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def check(session: nox.Session) -> None:
def format(session: nox.Session) -> None:
"""Run code formatting."""
formatters = {
"ruff": format_ruff,
# "ruff": format_ruff,
"black": format_black,
}
posargs = list(session.posargs)
Expand Down Expand Up @@ -57,7 +57,7 @@ def format_ruff(session: nox.Session) -> None:
def lint(session: nox.Session) -> None:
"""Run static code analysis and checks format is correct."""
linters = {
"ruff": lint_ruff,
# "ruff": lint_ruff,
"black": lint_black,
"pyright": lint_pyright,
"mypy": lint_mypy,
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ pyright = "^1.1.362" # Static code analysis
pytest = "^7.3.1" # Test driven development
pytest-benchmark = "^4.0.0" # Local benchmarks
pytest-codspeed = "^2.0.1" # Cloud benchmarks
ruff = "^0.4.4" # Code formatting

# Packages below are ground truth for version management. See requirements-dev.txt.
# poetry = "~=1.8.3" # Build management
Expand Down

0 comments on commit f7d0882

Please sign in to comment.