aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: dbced1cd913822a9b5934f6ced1a7503880c5513 (plain) (blame)
1
2
3
4
5
6
7
8
language: python
python: 2.7
sudo: false
script:
# won't fail, but print problems
- find . -name "*.json" -not -name "*Filler.json" -exec echo {} \; -exec python -mjson.tool {} /dev/null \; 2>&1 | grep -v -B 1 "^\./" | cat
# will fail, if linting fails
- find . -name "*.json" -not -name "*Filler.json" -print0 | xargs -I file -n1 -0 python -mjson.tool file /dev/null