yamllint: Drop excluding quoted values with ',' from checks

Strings with commas were excluded from checks because yamllint had false
positives for flow style maps and sequences which need quotes when
values contain commas. This issue has been fixed as of the 1.34 release,
so drop the work-around.

Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20240426195438.2771968-1-robh@kernel.org
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
This commit is contained in:
Rob Herring 2024-04-26 14:54:37 -05:00 committed by Rob Herring (Arm)
parent 75592f9e17
commit a6dcff26eb
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ rules:
quoted-strings: quoted-strings:
required: only-when-needed required: only-when-needed
extra-allowed: extra-allowed:
- '[$^,[]' - '[$^[]'
- '^/$' - '^/$'
line-length: line-length:
# 80 chars should be enough, but don't fail if a line is longer # 80 chars should be enough, but don't fail if a line is longer