Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 554 Bytes

final-newline.md

File metadata and controls

28 lines (19 loc) · 554 Bytes

Final Newline

Rule final-newline will enforce whether or not files should end with a newline.

Options

  • include: true/false (defaults to true)

Examples

When include: true, the following are allowed. When include: false, the following are disallowed:

.foo {
  content: 'bar';
}
// Newline under this comment at end of file

When include: false, the following are allowed. When include: true, the following are disallowed:

.foo {
  content: 'bar';
}
// No newline under this comment at end of file