blob: 2ff81e8f5de476f7f75abe9f0344e5a2f168a371 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
set -o errexit -o nounset -o pipefail
shopt -s globstar
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
|