Skip to content

Commit a473e12

Browse files
committed
style(markdown): enforce no-hard-tabs
1 parent f0b237f commit a473e12

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.markdownlint-cli2.jsonc

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@
2424
/* MD009 - Trailing spaces */
2525
"no-trailing-spaces": true,
2626

27-
// FIXME: enable and configure?
2827
/* MD010 - Hard tabs */
29-
"no-hard-tabs": false,
28+
"no-hard-tabs": true,
3029

3130
/* MD011 - Reversed link syntax */
3231
"no-reversed-links": true,

javascript/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727

2828
- Use [Prettier defaults](https://prettier.io/docs/en/options.html) with the following additional configuration (.prettierrc):
2929

30-
```json
31-
{
32-
"singleQuote": true
33-
}
34-
```
30+
```json
31+
{
32+
"singleQuote": true
33+
}
34+
```
3535

3636
This configuration includes:
3737
- Use semicolons at the end of each statement ([sample](/javascript/sample.js#L5))

0 commit comments

Comments
 (0)