mirror of
https://github.com/louis-e/arnis.git
synced 2026-01-14 00:57:46 -05:00
11 lines
339 B
Makefile
11 lines
339 B
Makefile
# Check if black formatter will work without any rewrites, and produces an exit code
|
|
style-check:
|
|
black src/ --check
|
|
|
|
# This will reformat all python files unders bookdifferent/ into the python black standard
|
|
style:
|
|
black src/
|
|
|
|
# Checks that the python source files are compliant regarding errors and style conventions
|
|
lint:
|
|
flake8 src/
|