Add linting

This commit is contained in:
2023-04-15 18:59:08 -03:00
parent 1a60b2327e
commit 812b9c1285
4 changed files with 10 additions and 4 deletions

View File

@ -1,6 +1,11 @@
STL_FILES = base.stl hinged_lid.stl simple_lid.stl tandy_lid.stl
all: $(STL_FILES)
all: $(STL_FILES) .lint
%.stl: %.py dimensions.py utils.py
python $<
python $<
.lint: *.py
flake8
touch .lint