some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / selector-attribute-operator-blacklist / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/selector-attribute-operator-blacklist/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/selector-attribute-operator-blacklist/README.md
deleted file mode 100644 (file)
index cbc7b14..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-# selector-attribute-operator-blacklist
-
-Specify a blacklist of disallowed attribute operators.
-
-```css
-[target="_blank"] {}
-/**    ↑
- * These operators */
-```
-
-## Options
-
-`array|string`: `["array", "of", "operators"]|"operator"`
-
-Given:
-
-```js
-[ "*=" ]
-```
-
-The following patterns are considered violations:
-
-```css
-[class*="test"] {}
-```
-
-The following patterns are *not* considered violations:
-
-```css
-[target] {}
-```
-
-```css
-[target="_blank"] {}
-```
-
-```css
-[class|="top"] {}
-```