Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 423 Bytes

File metadata and controls

37 lines (24 loc) · 423 Bytes

unicode-bom

Require or disallow the Unicode Byte Order Mark.

Options

string: "always"|"never"

"always"

The following pattern is considered a problem:

a {}

The following pattern is not considered a problem:

U+FEFF
a {}

"never"

The following pattern is considered a problem:

U+FEFF
a {}

The following pattern is not considered a problem:

a {}