From 61f45c596d9b6c72af0d149b0513790f526a5e80 Mon Sep 17 00:00:00 2001 From: Riccardo Pittau Date: Tue, 1 Sep 2020 09:57:16 +0200 Subject: [PATCH] Add skip list to ansible lint Also modify gitignore to allow . files to be included and ignore .stestr dir Change-Id: I53d11a484e5e86c5adf803a62eb6fe90e646b3aa --- .ansible-lint | 4 ++++ .gitignore | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .ansible-lint diff --git a/.ansible-lint b/.ansible-lint new file mode 100644 index 0000000..767e23f --- /dev/null +++ b/.ansible-lint @@ -0,0 +1,4 @@ +skip_list: + - '106' # Role name {} does not match ``^[a-z][a-z0-9_]+$`` pattern' + - '208' # File permissions not mentioned + diff --git a/.gitignore b/.gitignore index a5e9414..6b61d25 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,3 @@ -# All dot-files -.* # Ansible retry files *.retry # Tenks state file @@ -112,3 +110,6 @@ venv.bak/ # mypy .mypy_cache/ + +# tests +.stestr/