From 66647c3f2caacd5b8af5ee4ebf64a19242cf8020 Mon Sep 17 00:00:00 2001 From: nazunalika Date: Thu, 11 Feb 2021 01:57:04 -0700 Subject: [PATCH] merging lints --- .ansible-lint | 6 ++++++ .yamllint | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 .ansible-lint create mode 100644 .yamllint diff --git a/.ansible-lint b/.ansible-lint new file mode 100644 index 0000000..2394b2a --- /dev/null +++ b/.ansible-lint @@ -0,0 +1,6 @@ +# .ansible-lint +warn_list: + - '204' # Lines should be less than 160 characters + - '701' # meta/main.yml should contain relevant info +skip_list: + - '106' # Role name must match ^[a-z][a-z0-9_]+$ pattern diff --git a/.yamllint b/.yamllint new file mode 100644 index 0000000..04c5633 --- /dev/null +++ b/.yamllint @@ -0,0 +1,7 @@ +--- +extends: default + +rules: + line-length: + max: 140 + level: warning