diff options
Diffstat (limited to 'testenv')
-rw-r--r-- | testenv/linters/htmlhint.json | 3 | ||||
-rw-r--r-- | testenv/tox.ini | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/testenv/linters/htmlhint.json b/testenv/linters/htmlhint.json new file mode 100644 index 00000000..0c5c6c11 --- /dev/null +++ b/testenv/linters/htmlhint.json @@ -0,0 +1,3 @@ +{ + "src-not-empty": false +} diff --git a/testenv/tox.ini b/testenv/tox.ini index ba50e422..e3d2a810 100644 --- a/testenv/tox.ini +++ b/testenv/tox.ini @@ -58,4 +58,4 @@ commands = eslint --cache-location=/tmp --config=testenv/linters/eslintrc.yaml - [testenv:htmlhint] whitelist_externals = htmlhint -commands = htmlhint web/*.html web/*/*.html +commands = htmlhint --config=testenv/linters/htmlhint.json web/*.html web/*/*.html |