Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 690 Bytes

no-trailing-spaces.md

File metadata and controls

31 lines (19 loc) · 690 Bytes

no-trailing-spaces

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

🔧 The --fix option on the command line can automatically fix some of the problems reported by 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

References