Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 439 Bytes

no-trailing-spaces.md

File metadata and controls

25 lines (16 loc) · 439 Bytes

no-trailing-spaces

👗 The extends: 'stylistic' property in a configuration file enables this rule.

Disallow trailing whitespace at the end of lines.

Examples

This rule forbids the following:

<div>test</div>//••
//•••••

This rule allows the following:

<div>test</div>//
//

Related Rules