From 9e336cf0dbd185d54acb7fca2d3b4ce79c77d10d Mon Sep 17 00:00:00 2001 From: Nicolas KAROLAK <nicolas@karolak.fr> Date: Wed, 25 Mar 2020 18:02:54 +0000 Subject: [PATCH] lint: update rules --- .ansible-lint | 7 +++++++ Makefile | 2 +- playbooks/migrate-debian.yml | 2 +- roles/rocketchat/.yamllint | 11 ----------- 4 files changed, 9 insertions(+), 13 deletions(-) delete mode 100644 roles/rocketchat/.yamllint diff --git a/.ansible-lint b/.ansible-lint index c81cf5b7..ae6a780c 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -1,3 +1,10 @@ --- +exclude_paths: + - playbooks/_*.yml + - playbooks/migrate-debian.yml + - playbooks/pod.yml + - playbooks/upgrade.yml + - roles/_*/ + ... diff --git a/Makefile b/Makefile index 4b244373..8975bf74 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ install-dev: install lint: $(FLAKE8_BIN) . $(YAMLLINT_BIN) . - $(ANSIBLE_LINT_BIN) playbooks/*.yml + $(ANSIBLE_LINT_BIN) site.yml .PHONY: test ## test: Run development tests on the project : debug=1, keep=1 diff --git a/playbooks/migrate-debian.yml b/playbooks/migrate-debian.yml index 6da1a765..47a09981 100755 --- a/playbooks/migrate-debian.yml +++ b/playbooks/migrate-debian.yml @@ -98,7 +98,7 @@ - name: install debian version of packages shell: - cmd: apt-get install $(apt-show-versions | grep -P 'newer than version in archive' | awk -F: '{print $1"/buster"}') + cmd: "apt-get install $(apt-show-versions | grep -P 'newer than version in archive' | awk -F: '{print $1\"/buster\"}')" - name: upgrade apt: diff --git a/roles/rocketchat/.yamllint b/roles/rocketchat/.yamllint deleted file mode 100644 index ad0be760..00000000 --- a/roles/rocketchat/.yamllint +++ /dev/null @@ -1,11 +0,0 @@ -extends: default - -rules: - braces: - max-spaces-inside: 1 - level: error - brackets: - max-spaces-inside: 1 - level: error - line-length: disable - truthy: disable -- GitLab