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:
68
node_modules/stylelint/lib/rules/keyframe-declaration-no-important/README.md
generated
vendored
Normal file
68
node_modules/stylelint/lib/rules/keyframe-declaration-no-important/README.md
generated
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
# keyframe-declaration-no-important
|
||||
|
||||
Disallow `!important` within keyframe declarations.
|
||||
|
||||
```css
|
||||
@keyframes important2 {
|
||||
from { margin: 10px }
|
||||
to { margin: 20px !important }
|
||||
} /* ↑ */
|
||||
/** ↑
|
||||
* This !important */
|
||||
```
|
||||
|
||||
## Options
|
||||
|
||||
### `true`
|
||||
|
||||
The following patterns are considered warnings:
|
||||
|
||||
```css
|
||||
@keyframes important1 {
|
||||
from {
|
||||
margin-top: 50px;
|
||||
}
|
||||
to {
|
||||
margin-top: 100px !important;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
```css
|
||||
@keyframes important1 {
|
||||
from {
|
||||
margin-top: 50px;
|
||||
}
|
||||
to {
|
||||
margin-top: 100px!important;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
```css
|
||||
@keyframes important1 {
|
||||
from {
|
||||
margin-top: 50px;
|
||||
}
|
||||
to {
|
||||
margin-top: 100px ! important;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
The following patterns are *not* considered warnings:
|
||||
|
||||
```css
|
||||
a { color: pink !important; }
|
||||
```
|
||||
|
||||
```css
|
||||
@keyframes important1 {
|
||||
from {
|
||||
margin-top: 50px;
|
||||
}
|
||||
to {
|
||||
margin-top: 100px;
|
||||
}
|
||||
}
|
||||
```
|
39
node_modules/stylelint/lib/rules/keyframe-declaration-no-important/index.js
generated
vendored
Normal file
39
node_modules/stylelint/lib/rules/keyframe-declaration-no-important/index.js
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
"use strict"
|
||||
|
||||
const report = require("../../utils/report")
|
||||
const ruleMessages = require("../../utils/ruleMessages")
|
||||
const validateOptions = require("../../utils/validateOptions")
|
||||
|
||||
const ruleName = "keyframe-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.walkAtRules(/^(-(moz|webkit)-)?keyframes$/i, atRuleKeyframes => {
|
||||
atRuleKeyframes.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