Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 340 Bytes

no-trailing-spaces.md

File metadata and controls

21 lines (14 loc) · 340 Bytes

no-trailing-spaces

Disallow trailing whitespace at the end of lines.

This rule forbids the following:

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

This rule allows the following:

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

Related Rules