Lint banner
jkitchin jkitchin

Lint

Code Quality community

Description

Run code quality checks on the project. Execute the following linting and type checking: 1. **Ruff (linting)** ```bash ruff check vasp/ ``` 2. **Ruff (formatting check)** ```bash ruff format --check vasp/ ``` 3. **MyPy (type checking)** ```bash mypy vasp/ --ignore-missing-imports ``` Report any issues found and offer to fix them: - For ruff: `ruff check --fix vasp/` - For formatting: `ruff format vasp/` Summarize the code quality status.

Installation

Installs to ~/.claude/commands/jkitchin-vasp-lint.md

Terminal
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/jkitchin/vasp/HEAD/.claude/commands/lint.md -o ~/.claude/commands/jkitchin-vasp-lint.md

Restart Claude Code, or start a new session, for it to be picked up.

Full documentation available on GitHub

View Source Repository