@@ -12,13 +12,13 @@ This rule provides code style guidelines and project conventions for the StackOn
1212- Use [ ruff] ( https://docs.astral.sh/ruff/ ) for linting and formatting
1313- Follow PEP 8 style guidelines
1414- Maximum line length: 88 characters (ruff default)
15- - Run ` make lint` to check, ` make lint-fix` to auto-fix
15+ - Run ` just lint` to check, ` just lint-fix` to auto-fix
1616
1717## Type Annotations
1818
1919- Full type annotations required for all public APIs
2020- Use Python 3.11+ typing features
21- - Run ` make mypy` to verify type correctness
21+ - Run ` just mypy` to verify type correctness
2222- Strict mypy configuration is enforced
2323
2424## Pre-commit Hooks
@@ -28,18 +28,18 @@ Pre-commit hooks are configured for:
2828- ruff linting
2929- mypy type checking
3030
31- Run ` make install` to set up hooks.
31+ Run ` just install` to set up hooks.
3232
3333## Essential Commands
3434
3535``` bash
36- make install # Install dependencies and pre-commit hooks
37- make lint # Run ruff linting
38- make lint-fix # Auto-fix linting issues
39- make mypy # Run type checking
40- make test # Run all tests
41- make test-tools # Run tool-specific tests
42- make test-examples # Run example tests
36+ just install # Install dependencies and pre-commit hooks
37+ just lint # Run ruff linting
38+ just lint-fix # Auto-fix linting issues
39+ just mypy # Run type checking
40+ just test # Run all tests
41+ just test-tools # Run tool-specific tests
42+ just test-examples # Run example tests
4343```
4444
4545## File Naming
0 commit comments