blob: cf8537b66779d0e42723c67852cf4b28cdb5b6b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -o errexit -o nounset -o pipefail
shopt -s globstar
export PATH="$PWD/node_modules/.bin:$PATH"
jshint --verbose static/**/*.js
stylelint static/**/*.css
validatornu --Werror --skip-non-html static
validatornu --Werror --skip-non-css static
validatornu --Werror --skip-non-svg --no-langdetect static
|