.gitignore added
[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
new file mode 100644 (file)
index 0000000..cbc7b14
--- /dev/null
@@ -0,0 +1,39 @@
+# 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"] {}
+```