mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-09-13 13:23:32 -06:00
Initial commit
This commit is contained in:
35
node_modules/stylelint/lib/rules/declaration-no-important/README.md
generated
vendored
Normal file
35
node_modules/stylelint/lib/rules/declaration-no-important/README.md
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
# declaration-no-important
|
||||
|
||||
Disallow `!important` within declarations.
|
||||
|
||||
```css
|
||||
a { color: pink !important; }
|
||||
/** ↑
|
||||
* This !important */
|
||||
```
|
||||
|
||||
If you always want `!important` in your declarations, e.g. if you're writing [user styles](https://userstyles.org/), you can *safely* add them using [`postcss-safe-important`](https://github.com/crimx/postcss-safe-important).
|
||||
|
||||
## Options
|
||||
|
||||
### `true`
|
||||
|
||||
The following patterns are considered warnings:
|
||||
|
||||
```css
|
||||
a { color: pink !important; }
|
||||
```
|
||||
|
||||
```css
|
||||
a { color: pink ! important; }
|
||||
```
|
||||
|
||||
```css
|
||||
a { color: pink!important; }
|
||||
```
|
||||
|
||||
The following patterns are *not* considered warnings:
|
||||
|
||||
```css
|
||||
a { color: pink; }
|
||||
```
|
38
node_modules/stylelint/lib/rules/declaration-no-important/index.js
generated
vendored
Normal file
38
node_modules/stylelint/lib/rules/declaration-no-important/index.js
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
"use strict"
|
||||
|
||||
const report = require("../../utils/report")
|
||||
const ruleMessages = require("../../utils/ruleMessages")
|
||||
const validateOptions = require("../../utils/validateOptions")
|
||||
|
||||
const ruleName = "declaration-no-important"
|
||||
|
||||
const messages = ruleMessages(ruleName, {
|
||||
rejected: "Unexpected !important",
|
||||
})
|
||||
|
||||
const rule = function (actual) {
|
||||
return (root, result) => {
|
||||
const validOptions = validateOptions(result, ruleName, { actual })
|
||||
if (!validOptions) {
|
||||
return
|
||||
}
|
||||
|
||||
root.walkDecls(decl => {
|
||||
if (!decl.important) {
|
||||
return
|
||||
}
|
||||
|
||||
report({
|
||||
message: messages.rejected,
|
||||
node: decl,
|
||||
word: "important",
|
||||
result,
|
||||
ruleName,
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
rule.ruleName = ruleName
|
||||
rule.messages = messages
|
||||
module.exports = rule
|
Reference in New Issue
Block a user