Skip to content

Files

Latest commit

 

History

History
43 lines (27 loc) · 542 Bytes

unicode-bom.md

File metadata and controls

43 lines (27 loc) · 542 Bytes

Pattern: Invalid Unicode BOM

Issue: -

Description

Require or disallow the Unicode Byte Order Mark.

Examples

"always"

The following pattern is considered a violation:

a {}

The following pattern is not considered a violation:

U+FEFF
a {}

"never"

The following pattern is considered a violation:

U+FEFF
a {}

The following pattern is not considered a violation:

a {}

Further Reading