Files @ 5e1fb3de9cd9
Branch filter:

Location: kallithea/scripts/run-all-cleanup - annotation

mads
i18n: fr: consistently use 'NO-BREAK SPACE' before double punctuation instead of space

Pretty much like https://docs.weblate.org/en/latest/user/checks.html#punctuation-spacing .
#!/bin/sh

# Convenience script for running various idempotent source code cleanup scripts

set -e
set -x

hg files 'set:!binary()&grep("^#!.*python")' 'set:**.py' | xargs scripts/deps.py
dot -Tsvg deps.dot > deps.svg

scripts/docs-headings.py
scripts/generate-ini.py
scripts/whitespacecleanup.sh
hg files 'set:!binary()&grep("^#!.*python")' 'set:**.py' | xargs scripts/source_format.py

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