From 23565fcf27cda4fbfb8ec411984e933906f4ade2 Mon Sep 17 00:00:00 2001 From: Simon Eisenmann Date: Mon, 30 Jun 2014 12:20:58 +0200 Subject: [PATCH] Brought back styleshint in top level makefile. --- Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.am b/Makefile.am index 7450c846..5f1d2ca9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -93,6 +93,9 @@ javascript: styles: fonts cd $(CURDIR)/src/styles && $(MAKE) styles +styleshint: + cd $(CURDIR)/src/styles && $(MAKE) styleshint + jshint: @if [ "$(JSHINT)" = "" ]; then echo "Command 'jshint' not found"; exit 1; fi $(FIND) static/ -wholename static/js/libs -prune -o -name "*.js" -print0 | xargs -0 -n1 $(JSHINT) --config .jshint