diff --git a/.ansible-lint b/.ansible-lint index 001920b..2394b2a 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -1,3 +1,6 @@ # .ansible-lint warn_list: - - '106' + - '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