Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 584 Bytes

unicode-bom.md

File metadata and controls

45 lines (28 loc) · 584 Bytes

Pattern: Malformed Unicode Byte Order Mark (BOM)

Issue: -

Description

Require or disallow the Unicode Byte Order Mark.

Examples

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 {}

Further Reading