11 lines
251 B
Bash
Executable File
11 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
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
|