diff makefile @ 1864:375f48d1518a

mypy, flake8 setups Ignore-this: 159ab09780ff33dec508d2d25c1628bf
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 25 May 2019 12:03:26 +0000
parents 3f1b9b9b0505
children 7fe81130b735
line wrap: on
line diff
--- a/makefile	Sat May 25 12:01:26 2019 +0000
+++ b/makefile	Sat May 25 12:03:26 2019 +0000
@@ -50,14 +50,11 @@
 coffee:
 	zsh -c 'cd light9/web; ../../node_modules/coffeescript/bin/coffee --map -cw {.,live,timeline,paint,effects}/*.coffee'
 
-mypy-collector:
-	env/bin/mypy --ignore-missing-imports --strict-optional --custom-typeshed-dir stubs --html-report /tmp/rep bin/collector light9/collector/*.py
-
-mypy-paint:
-	env/bin/mypy --ignore-missing-imports --strict-optional --custom-typeshed-dir stubs --html-report /tmp/rep light9/paint/*.py
+mypy:
+	inv mypy
 
 reformat:
-	env/bin/yapf --verbose --parallel --in-place --style google light9/**/*.py `file --no-pad  bin/* | grep 'Python script' | perl -lpe 's/:.*//'`
+	inv reformat
 
 ### show ###