11 lines
189 B
Bash
Executable file
11 lines
189 B
Bash
Executable file
#!/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'
|