We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
unicode-bom
1 parent 000290c commit 1000187Copy full SHA for 1000187
docs/src/rules/unicode-bom.md
@@ -31,9 +31,10 @@ Example of **correct** code for this rule with the `"always"` option:
31
::: correct
32
33
```js
34
+// U+FEFF at the beginning
35
+
36
/*eslint unicode-bom: ["error", "always"]*/
37
-U+FEFF
38
var abc;
39
```
40
@@ -70,9 +71,10 @@ Example of **incorrect** code for this rule with the `"never"` option:
70
71
::: incorrect
72
73
74
75
76
/*eslint unicode-bom: ["error", "never"]*/
77
78
79
80
0 commit comments