Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/stylelint/lib/rules/unicode-bom/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/unicode-bom/README.md37
1 files changed, 0 insertions, 37 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/unicode-bom/README.md b/assets/node_modules/stylelint/lib/rules/unicode-bom/README.md
deleted file mode 100644
index 206a8a1..0000000
--- a/assets/node_modules/stylelint/lib/rules/unicode-bom/README.md
+++ /dev/null
@@ -1,37 +0,0 @@
-# unicode-bom
-
-Require or disallow the Unicode Byte Order Mark.
-
-## Options
-
-`string`: `"always"|"never"`
-
-### `"always"`
-
-The following pattern is considered a violation:
-
-```css
-a {}
-```
-
-The following pattern is *not* considered a violation:
-
-```css
-U+FEFF
-a {}
-```
-
-### `"never"`
-
-The following pattern is considered a violation:
-
-```css
-U+FEFF
-a {}
-```
-
-The following pattern is *not* considered a violation:
-
-```css
-a {}
-```