Skip to content

Commit

Permalink
remove lint dependency category
Browse files Browse the repository at this point in the history
  • Loading branch information
onerandomusername committed Feb 23, 2023
1 parent f4e247c commit 8bbed2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -72,7 +72,7 @@ def docs(session: nox.Session):
@nox.session
def lint(session: nox.Session):
"""Check all files for linting errors"""
session.run_always("pdm", "install", "-dG", "lint", "-G", "tools", external=True)
session.run_always("pdm", "install", "-G", "tools", external=True)

session.run("pre-commit", "run", "--all-files", *session.posargs)

Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Expand Up @@ -70,15 +70,13 @@ tools = [
"python-dotenv~=0.20.0",
"towncrier==22.12.0",
"check-manifest==0.48",
"ruff=0.0.252",
]
codemod = [
# run codemods on the respository (mostly automated typing)
"libcst~=0.4.7",
"black==23.1.0",
]
lint = [
"ruff=0.0.252",
]
typing = [
"typing-extensions~=4.2.0",
# this is not pyright itself, but the python wrapper
Expand Down

0 comments on commit 8bbed2c

Please sign in to comment.