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

View 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