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-scss/src/rules/at-function-parentheses-space-before/README.md')
-rw-r--r--assets/node_modules/stylelint-scss/src/rules/at-function-parentheses-space-before/README.md50
1 files changed, 0 insertions, 50 deletions
diff --git a/assets/node_modules/stylelint-scss/src/rules/at-function-parentheses-space-before/README.md b/assets/node_modules/stylelint-scss/src/rules/at-function-parentheses-space-before/README.md
deleted file mode 100644
index 9d4d362..0000000
--- a/assets/node_modules/stylelint-scss/src/rules/at-function-parentheses-space-before/README.md
+++ /dev/null
@@ -1,50 +0,0 @@
-# at-function-parentheses-space-before
-
-Require or disallow a space before `@function` parentheses.
-
-```scss
-@function foo ($arg) { }
-/** ↑
- * The space before this parenthesis */
-```
-
-The `--fix` option on the [command line](https://github.com/stylelint/stylelint/blob/master/docs/user-guide/cli.md#autofixing-errors) can automatically fix all of the problems reported by this rule.
-
-## Options
-
-`string`: `"always"|"never"`
-
-### `"always"`
-
-There *must always* be exactly one space between the function name and the opening parenthesis.
-
-The following patterns are considered warnings:
-
-```scss
-@function foo($arg) { }
-```
-```scss
-@function foo ($arg) { }
-```
-
-The following patterns are *not* considered warnings:
-
-```scss
-@function foo ($arg) { }
-```
-
-### `"never"`
-
-There *must never* be any whitespace between the function name and the opening parenthesis.
-
-The following patterns are considered warnings:
-
-```scss
-@function foo ($arg) { }
-```
-
-The following patterns are *not* considered warnings:
-
-```scss
-@function foo($arg) { }
-```