Pattern: Malformed spacing after -
Issue: -
This rule enforces the number of spaces after hyphens (-
).
max-spaces-after
defines the maximal number of spaces allowed after hyphens.
-
With
hyphens: {max-spaces-after: 1}
the following code snippet would PASS:
- first list: - a - b - - 1 - 2 - 3
the following code snippet would FAIL:
- first list: - a - b
the following code snippet would FAIL:
- - 1 - 2 - 3
-
With
hyphens: {max-spaces-after: 3}
the following code snippet would PASS:
- key - key2 - key42
the following code snippet would FAIL:
- key - key2 - key42