13 lines
318 B
Bash
Executable File
13 lines
318 B
Bash
Executable File
#!/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
|