Skip to content

Latest commit

 

History

History
71 lines (52 loc) · 737 Bytes

File metadata and controls

71 lines (52 loc) · 737 Bytes
id MDS007
name no-hard-tabs
status ready
description No tab characters. Use spaces instead.

MDS007: no-hard-tabs

No tab characters. Use spaces instead.

  • ID: MDS007
  • Name: no-hard-tabs
  • Status: ready
  • Default: enabled
  • Fixable: yes
  • Implementation: source
  • Category: whitespace

Config

Enable:

rules:
  no-hard-tabs: true

Disable:

rules:
  no-hard-tabs: false

Examples

Bad

# Title

hel	lo

Good

# Title

No tabs here.

```text
	indented with tab
	more tabbed code
```