Skip to main content

no-space-before-punctuation

Disallows spaces before periods and commas.

Rule Details

This rule reports one or more spaces immediately before a period or comma at the end of a text segment and automatically removes them. Code blocks and punctuation followed directly by another non-whitespace character are ignored.

<!-- Bad -->

Hello , world .

<!-- Good -->

Hello, world.

Options

This rule is not configurable.

Resources