blob: ecad8995b2b59571de63932ecabdeb5417dfbd0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
set -o errexit -o nounset -o pipefail
shopt -s extglob globstar
export PATH="$PWD/node_modules/.bin:$PATH"
json_verify < static/manifest.webmanifest >/dev/null
xmllint --noout static/**/*.@(html|svg|xml)
jshint --verbose static/**/*.js
stylelint static/**/*.css
validatornu --Werror --also-check-css static/**/*.@(css|html)
validatornu --Werror --skip-non-svg --no-langdetect static
|