python-conventions | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / python-conventions

python-conventions

maintained by VectorInstitute

star 0 account_tree 0 verified_user MIT License
bolt View GitHub

name: python-conventions description: Python tooling conventions for this organization. Use when working with Python projects, fixing linting issues, or managing dependencies.

Python Conventions

Package Management

Use uv exclusively:

uv sync          # Install dependencies
uv lock          # Regenerate lock file
uv add "pkg"     # Add dependency
uv run <cmd>     # Run in project environment

Lock files: Never manually edit. Delete and regenerate:

rm uv.lock && uv lock

Linting

Tools (in order):

  1. ruff check --fix - Linting
  2. ruff format - Formatting
  3. mypy - Type checking

Run all: uv run pre-commit run --all-files

Inline Ignores

Always include justification:

from module import thing  # noqa: PLC0415 - Lazy import after validation

Environment

Clear inherited environments:

unset VIRTUAL_ENV
uv sync

chat Comments (0)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 0
GitHub Forks 0
Created Jan 2026
Last Updated 5个月前
tools tools package distribution

Related Skills

creating-pr
chevron_right
reviewing-pr
chevron_right
packmind-standard-creator
chevron_right
packmind-standard-creator
chevron_right
code-review-router
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.