]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
yamllint: Drop excluding quoted values with ',' from checks
authorRob Herring <robh@kernel.org>
Fri, 26 Apr 2024 19:54:37 +0000 (14:54 -0500)
committerRob Herring (Arm) <robh@kernel.org>
Wed, 3 Sep 2025 14:01:25 +0000 (09:01 -0500)
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>
Documentation/devicetree/bindings/.yamllint

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