Skip to content

Commit 520a73d

Browse files
authored
jinja[spacing]: Include in default warn_list until it matures (#2336)
As we know that there are still known false-positive formatting recommendations we include this rule in the default warn_list.
1 parent 76878e7 commit 520a73d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/ansiblelint/config.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@
1010

1111
from ansiblelint.loaders import yaml_from_file
1212

13-
DEFAULT_WARN_LIST = ["experimental", "name[casing]", "name[play]", "role-name"]
13+
DEFAULT_WARN_LIST = [
14+
"experimental",
15+
"jinja[spacing]", # warning until we resolve all reported false-positives
16+
"name[casing]",
17+
"name[play]",
18+
"role-name",
19+
]
1420

1521
DEFAULT_KINDS = [
1622
# Do not sort this list, order matters.

0 commit comments

Comments
 (0)