stylelint
Version:
Modern CSS linter
30 lines (20 loc) • 399 B
Markdown
# no-missing-eof-newline
Disallow missing end-of-file newlines in non-empty files.
```css
a { color: pink; }
\n
/** ↑
* This newline */
```
## Options
### `true`
The following patterns are considered warnings:
```css
a { color: pink; }
```
The following patterns are *not* considered warnings:
```css
a { color: pink; }
\n
```
Completely empty files are not considered warnings.