From 3bc72d4c4068b812a223aa13b0f3729c66d094c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Fri, 18 Nov 2016 11:55:09 +0100 Subject: [PATCH] feat(CI): Enforce strict checking of YAML files Use the `--strict` flag to check all rules on local YAML files, to prevent all problems (including warnings). This includes the newly added `truthy` rule. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0ff3297..c39f155 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ install: - pip install . script: - flake8 . - - yamllint $(git ls-files '*.yaml' '*.yml') + - yamllint --strict $(git ls-files '*.yaml' '*.yml') - coverage run --source=yamllint setup.py test after_success: coveralls