@@ -117,7 +117,7 @@ auto-style:
117117 @type standard > /dev/null 2>&1 || (echo " Run 'npm install -g standard' first." >&2 ; exit 1)
118118 @standard --fix resources/* .js
119119
120- lint : auto-style code-style code-lint js-lint html-lint css-lint
120+ lint : auto-style code-style code-lint js-lint css-lint
121121
122122code-style :
123123 @type pycodestyle > /dev/null 2>&1 || (echo " Run '$( PIP) install pycodestyle' first." >&2 ; exit 1)
@@ -133,15 +133,15 @@ code-lint:
133133
134134css-lint :
135135 @type csslint > /dev/null 2>&1 || (echo " Run 'npm install -g csslint' first." >&2 ; exit 1)
136- @csslint --format=compact resources/* .css
136+ @csslint --format=compact resources/kanban .css
137137
138138js-lint :
139139 @type standard > /dev/null 2>&1 || (echo " Run 'npm install -g standard' first." >&2 ; exit 1)
140140 @standard resources/* .js
141141
142142html-lint :
143143 @type tidy > /dev/null 2>&1 || (echo " Run 'brew install tidy' first." >&2 ; exit 1)
144- @tidy -qe resources/* .html
144+ @tidy -qe --mute --mute MISSING_ENDTAG_BEFORE,DISCARDING_UNEXPECTED,TRIM_EMPTY_ELEMENT resources/* .html
145145
146146code-count :
147147 @type cloc > /dev/null 2>&1 || (echo " Run 'brew install cloc' first." >&2 ; exit 1)
@@ -159,7 +159,7 @@ pre-commit:
159159 @make auto-style lint
160160 @make deps-install install
161161 @THINGSDB=resources/demo.sqlite3 things-cli inbox
162- @make uninstall clean test png jpg
162+ @make uninstall clean test jpg
163163 @THINGSDB=resources/demo.sqlite3 make run-api &
164164 @THINGSDB=resources/demo.sqlite3 make run open args=" today" cli open-api app kill-api
165165 @THINGSDB=resources/demo.sqlite3 make run-app &
0 commit comments