2018-05-18 20:59:30 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
source ./scripts/common.sh
|
|
|
|
|
|
|
|
sass-lint -vqc .sass-lint.yml
|
|
|
|
eslint $STATIC_SRC/js
|
|
|
|
yamllint data/*.yml
|
|
|
|
yamllint config.yml
|
|
|
|
mdspell --en-gb -ranx 'content/**/*.md'
|
|
|
|
|
|
|
|
blcl -ro ./public/ \
|
|
|
|
--exclude "open.spotify.com"\
|
|
|
|
--exclude "p.scdn.co"\
|
2018-05-18 22:02:42 +01:00
|
|
|
--exclude "html5up.net"\
|
2018-05-18 20:59:30 +01:00
|
|
|
--exclude "staticflickr.com"\
|
|
|
|
--exclude "twitter.com/intent"\
|
|
|
|
--exclude "facebook.com/sharer"\
|
2018-05-18 21:15:17 +01:00
|
|
|
--exclude "reddit.com/submit"
|