UNPKG

531 BMarkdownView Raw
1# unicode-bom
2
3Require or disallow the Unicode Byte Order Mark.
4
5## Options
6
7`string`: `"always"|"never"`
8
9### `"always"`
10
11The following pattern is considered a violation:
12
13<!-- prettier-ignore -->
14```css
15a {}
16```
17
18The following pattern is _not_ considered a violation:
19
20<!-- prettier-ignore -->
21```css
22U+FEFF
23a {}
24```
25
26### `"never"`
27
28The following pattern is considered a violation:
29
30<!-- prettier-ignore -->
31```css
32U+FEFF
33a {}
34```
35
36The following pattern is _not_ considered a violation:
37
38<!-- prettier-ignore -->
39```css
40a {}
41```