diff options
-rw-r--r-- | .yamllint | 14 | ||||
-rw-r--r-- | test-requirements.txt | 1 | ||||
-rw-r--r-- | tox.ini | 1 |
3 files changed, 16 insertions, 0 deletions
diff --git a/.yamllint b/.yamllint new file mode 100644 index 0000000..6f0d12b --- /dev/null +++ b/.yamllint @@ -0,0 +1,14 @@ +--- +extends: default + +ignore: | + .tox + +rules: + braces: + max-spaces-inside: 1 + level: error + brackets: + max-spaces-inside: 1 + level: error + line-length: disable diff --git a/test-requirements.txt b/test-requirements.txt index 4e92b9d..dfdd4f8 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,2 +1,3 @@ black flake8 +yamllint @@ -12,6 +12,7 @@ install_command = pip install {opts} {packages} commands = black -v -l79 --check {toxinidir} flake8 {posargs} + yamllint -s . [testenv:venv] commands = {posargs} |