All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
7 docker_flags=(--rm -v "$PWD:/testplugin" -v "$PWD/test:/home" -w /testplugin "$DOCKER_RUN_IMAGE")
9 echo '========================================'
10 echo 'Running custom linting rules'
11 echo '========================================'
12 echo 'Custom warnings/errors follow:'
16 "$DOCKER" run "${docker_flags[@]}" test/script/custom-linting-rules . || exit_code=$?
20 echo '========================================'
21 echo 'Checking for duplicate tags'
22 echo '========================================'
23 echo 'Duplicate tags follow:'
27 "$DOCKER" run "${docker_flags[@]}" test/script/check-duplicate-tags . || exit_code=$?
31 echo '========================================'
32 echo 'Checking for invalid tag references'
33 echo '========================================'
34 echo 'Invalid tag references tags follow:'
38 "$DOCKER" run "${docker_flags[@]}" test/script/check-tag-references || exit_code=$?
41 echo '========================================'
42 echo 'diff supported-tools.md and doc/ale-supported-languages-and-tools.txt tables'
43 echo '========================================'
44 echo 'Differences follow:'
48 "$DOCKER" run "${docker_flags[@]}" test/script/check-supported-tools-tables || exit_code=$?
51 echo '========================================'
52 echo 'Look for badly aligned doc tags'
53 echo '========================================'
54 echo 'Badly aligned tags follow:'
58 "$DOCKER" run "${docker_flags[@]}" test/script/check-tag-alignment || exit_code=$?
61 echo '========================================'
62 echo 'Look for table of contents issues'
63 echo '========================================'
67 "$DOCKER" run "${docker_flags[@]}" test/script/check-toc || exit_code=$?
70 echo '========================================'
71 echo 'Check Python code'
72 echo '========================================'
75 "$DOCKER" run --rm -v "$PWD:/testplugin" "$DOCKER_RUN_IMAGE" \
76 python -W ignore -m unittest discover /testplugin/test/python \