Skip to content

Latest commit

 

History

History
70 lines (51 loc) · 798 Bytes

File metadata and controls

70 lines (51 loc) · 798 Bytes
id MDS006
name no-trailing-spaces
status ready
description No trailing whitespace at the end of lines.

MDS006: no-trailing-spaces

No trailing whitespace at the end of lines.

  • ID: MDS006
  • Name: no-trailing-spaces
  • Status: ready
  • Default: enabled
  • Fixable: yes
  • Implementation: source
  • Category: whitespace

Config

Enable:

rules:
  no-trailing-spaces: true

Disable:

rules:
  no-trailing-spaces: false

Examples

Bad

# Title

Trailing spaces here.   

Good

# Title

No trailing spaces here.

```text
code block with language tag
```