view scripts/run-all-cleanup @ 8459:143f3e9d7599 stable

contributors: update
author Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
date Thu, 10 Sep 2020 20:44:35 +0200
parents 8d663d23ab85
children 0a84ef075575
line wrap: on
line source

#!/bin/sh

# Convenience script for running various idempotent source code cleanup scripts

set -e
set -x

scripts/docs-headings.py
scripts/generate-ini.py
scripts/whitespacecleanup.sh

hg loc 'set:!binary()&grep("^#!.*python")' '*.py' | xargs scripts/pyflakes
echo "no blocking problems found by $0"