Description
While running static analysis scans to benchmark a Docs-as-Code linter we are building (Zenzic), we identified a syntax error in a TOML code block. A colon (:) is used instead of an equal sign (=) for a key-value pair, which makes the configuration example syntactically invalid for users copying it.
Related links
Proposed change
Change json: [".s2"] to json = [".s2"] to comply with the TOML specification.
I already have the fix tested locally. I would be glad to submit a Pull Request to resolve this, ensuring my commits conform to your Conventional Commits standards and carry the required DCO Signed-off-by trailer. Please let me know if I have the green light to open the PR.
Before submitting
Description
While running static analysis scans to benchmark a Docs-as-Code linter we are building (Zenzic), we identified a syntax error in a TOML code block. A colon (
:) is used instead of an equal sign (=) for a key-value pair, which makes the configuration example syntactically invalid for users copying it.Related links
Proposed change
Change
json: [".s2"]tojson = [".s2"]to comply with the TOML specification.I already have the fix tested locally. I would be glad to submit a Pull Request to resolve this, ensuring my commits conform to your Conventional Commits standards and carry the required DCO
Signed-off-bytrailer. Please let me know if I have the green light to open the PR.Before submitting