Initial commit

This commit is contained in:
Patrick Marsceill
2017-03-09 13:16:08 -05:00
commit b7b0d0d7bf
4147 changed files with 401224 additions and 0 deletions

View 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;
}
}
```

View 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