summaryrefslogtreecommitdiffstats
path: root/.ansible-lint
diff options
context:
space:
mode:
Diffstat (limited to '.ansible-lint')
-rw-r--r--.ansible-lint10
1 files changed, 9 insertions, 1 deletions
diff --git a/.ansible-lint b/.ansible-lint
index 3530086..4e92c01 100644
--- a/.ansible-lint
+++ b/.ansible-lint
@@ -76,7 +76,7 @@ warn_list:
# - yaml[document-start] # you can also use sub-rule matches
# Some rules can transform files to fix (or make it easier to fix) identified
-# errors. `ansible-lint --write` will reformat YAML files and run these transforms.
+# errors. `ansible-lint --fix` will reformat YAML files and run these transforms.
# By default it will run all transforms (effectively `write_list: ["all"]`).
# You can disable running transforms by setting `write_list: ["none"]`.
# Or only enable a subset of rule transforms by listing rules/tags here.
@@ -118,3 +118,11 @@ kinds:
# Allow setting custom prefix for name[prefix] rule
task_name_prefix: "{stem} | "
+# Complexity related settings
+
+# Limit the depth of the nested blocks:
+# max_block_depth: 20
+
+# Also recognize these versions of Ansible as supported:
+# supported_ansible_also:
+# - "2.14"