fix: remove check

This commit is contained in:
neoarz
2026-04-12 10:18:10 -04:00
parent 867fa123a7
commit 667c71f730
2 changed files with 0 additions and 5 deletions

View File

@@ -12,7 +12,6 @@ dependencies = []
syntrel = "syntrel.cli:main"
lint = "syntrel.dev:lint"
format = "syntrel.dev:format"
check = "syntrel.dev:check"
[build-system]
requires = ["uv_build>=0.11.3,<0.12.0"]

View File

@@ -30,7 +30,3 @@ def lint() -> None:
def format() -> None:
_run("ruff", "check", "--fix", ".")
_run("ruff", "format", ".")
def check() -> None:
lint()