mirror of https://github.com/torvalds/linux.git
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:
parent
75592f9e17
commit
a6dcff26eb
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue