Refactor XSS linter into smaller files

This commit is contained in:
Anthony Mangano
2018-02-08 17:33:18 -05:00
parent 50574ea914
commit 07ca440226
19 changed files with 2141 additions and 2094 deletions

View File

@@ -5,7 +5,7 @@ set -e
#
# xss-commit-linter.sh
#
# Executes xss_linter.py on the set of files in a particular git commit.
# Executes xsslint/xss_linter.py on the set of files in a particular git commit.
#
###############################################################################
@@ -82,6 +82,6 @@ else
for f in $diff_files; do
echo ""
echo "Linting $f:"
./scripts/xss_linter.py $f
./scripts/xsslint/xss_linter.py $f
done
fi