Skip to content

Files

Latest commit

 

History

History
15 lines (8 loc) · 503 Bytes

UseBOMForUnicodeEncodedFile.md

File metadata and controls

15 lines (8 loc) · 503 Bytes

Pattern: Missing Byte Order Mark for non-ASCII encoded file

Issue: -

Description

For a file encoded with a format other than ASCII, ensure Byte Order Mark (BOM) is present to ensure that any application consuming this file can interpret it correctly.

How

Ensure that the file is encoded with BOM present.

Further Reading