mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-05 12:51:12 +00:00
a24ab56da8
The 'black' tool is intended to be an opinionated formatting tool for python code. It is complementary to flake8 which validates coding bad practices, but (mostly) ignores code layout issues. Reviewed-by: Michal Privoznik <mprivozn@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
15 lines
277 B
Makefile
15 lines
277 B
Makefile
# define variables
|
|
|
|
top_srcdir = @top_srcdir@
|
|
top_builddir = @top_builddir@
|
|
FLAKE8 = @flake8_path@
|
|
BLACK = @black_path@
|
|
RUNUTF8 = @runutf8@
|
|
PYTHON = @PYTHON3@
|
|
GREP = @GREP@
|
|
SED = @SED@
|
|
AWK = @AWK@
|
|
|
|
# include syntax-check.mk file
|
|
include $(top_srcdir)/build-aux/syntax-check.mk
|