Files @ fa373bf186b2
Branch filter:

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

Mads Kiilerich
scripts/i18n: update i18n howto with recipe for use of scripts/i18n tooling

For now, just adding a new section. It should be integrated with the existing
documentation. Some steps can perhaps be simplified or automated so we need
less words.
#!/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"