diff --git a/Makefile b/Makefile index a4b44ad32..0232ed82f 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,9 @@ lint: # Liner performs static analysis to catch latent bugs ruff aws_lambda_builders +lint-fix: + ruff aws_lambda_builders --fix + # Command to run everytime you make changes to verify everything works dev: lint test @@ -31,3 +34,5 @@ black-check: # Verifications to run before sending a pull request pr: init dev black-check + +format: lint-fix black \ No newline at end of file