This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Linter will ignore these directories | |
| IGNORE_LINT_DIRS = .venv|venv | |
| LINE_LENGTH = 88 | |
| install_tools: | |
| @echo "$(YELLOW)🔧Installing tools...$(RESET)" | |
| @uv tool install black --force | |
| @uv tool install ruff --force | |
| @uv tool install ty --force | |
| @uv tool install vulture --force |