Skip to content

Commit

Permalink
jinja[spacing]: Include in default warn_list until it matures (#2336)
Browse files Browse the repository at this point in the history
As we know that there are still known false-positive formatting
recommendations we include this rule in the default warn_list.
  • Loading branch information
ssbarnea authored Aug 25, 2022
1 parent 76878e7 commit 520a73d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/ansiblelint/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@

from ansiblelint.loaders import yaml_from_file

DEFAULT_WARN_LIST = ["experimental", "name[casing]", "name[play]", "role-name"]
DEFAULT_WARN_LIST = [
"experimental",
"jinja[spacing]", # warning until we resolve all reported false-positives
"name[casing]",
"name[play]",
"role-name",
]

DEFAULT_KINDS = [
# Do not sort this list, order matters.
Expand Down

0 comments on commit 520a73d

Please sign in to comment.