9 lines
122 B
Bash
Executable file
9 lines
122 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo ">> Linting JSON Data..."
|
|
jsonlint -q data/projects.json
|
|
|
|
|
|
echo "> Extra tests passed!"
|