mirror of
https://github.com/leigest519/ScreenCoder.git
synced 2026-02-14 10:42:48 +00:00
21 lines
486 B
Makefile
21 lines
486 B
Makefile
.PHONY: style quality
|
|
|
|
# make sure to test the local checkout in scripts and not the pre-installed one (don't use quotes!)
|
|
export PYTHONPATH = src
|
|
|
|
check_dirs := src
|
|
|
|
style:
|
|
black --line-length 119 --target-version py310 $(check_dirs) setup.py
|
|
isort $(check_dirs) setup.py
|
|
|
|
quality:
|
|
black --check --line-length 119 --target-version py310 $(check_dirs) setup.py
|
|
isort --check-only $(check_dirs) setup.py
|
|
flake8 --max-line-length 119 $(check_dirs) setup.py
|
|
|
|
|
|
# Evaluation
|
|
|
|
evaluate:
|