Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 527 Bytes
092c345 8c49cb6 092c345 8c49cb6 092c345 8c49cb6 092c345 8c49cb6 092c345 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
.PHONY: style format quality all
# Applies code style fixes to the specified file or directory
style:
@echo "Applying style fixes to $(file)"
ruff format $(file)
ruff check --fix $(file) --line-length 119
# Checks code quality for the specified file or directory
quality:
@echo "Checking code quality for $(file)"
ruff check $(file) --line-length 119
# Applies PEP8 formatting and checks the entire codebase
all:
@echo "Formatting and checking the entire codebase"
ruff format .
ruff check --fix . --line-length 119
|