Skip to content

Commit

Permalink
Remove quote rules. Closes #14
Browse files Browse the repository at this point in the history
  • Loading branch information
jeddy3 committed Mar 27, 2016
1 parent 85e5e0d commit 23baa55
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
# Head

- Removed: `font-family-name-quotes`, `function-url-quotes` and `string-quotes` rules.

# 4.0.1

- Fixed: include peerDependencies in `package.json` to expose compatibility.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -78,8 +78,8 @@ It favours flexibility over strictness for things like multi-line lists and sing

/* Flush nested single line comment */
.selector::after {
content: "";
background-image: url("x.svg");
content: '';
background-image: url(x.svg);
}
}

Expand Down
4 changes: 2 additions & 2 deletions __tests__/index.js
Expand Up @@ -66,8 +66,8 @@ const validCss = (
/* Flush nested single line comment */
.selector::after {
content: "→";
background-image: url("x.svg");
content: '→';
background-image: url(x.svg);
}
}
Expand Down
3 changes: 0 additions & 3 deletions index.js
Expand Up @@ -30,15 +30,13 @@ module.exports = {
"declaration-colon-newline-after": "always-multi-line",
"declaration-colon-space-after": "always-single-line",
"declaration-colon-space-before": "never",
"font-family-name-quotes": "double-where-recommended",
"function-calc-no-unspaced-operator": true,
"function-comma-newline-after": "always-multi-line",
"function-comma-space-after": "always-single-line",
"function-comma-space-before": "never",
"function-linear-gradient-no-nonstandard-direction": true,
"function-parentheses-newline-inside": "always-multi-line",
"function-parentheses-space-inside": "never-single-line",
"function-url-quotes": "double",
"function-whitespace-after": "always",
"indentation": 2,
"max-empty-lines": 1,
Expand Down Expand Up @@ -66,7 +64,6 @@ module.exports = {
"selector-list-comma-space-before": "never",
"selector-pseudo-element-colon-notation": "double",
"string-no-newline": true,
"string-quotes": "double",
"value-list-comma-newline-after": "always-multi-line",
"value-list-comma-space-after": "always-single-line",
"value-list-comma-space-before": "never",
Expand Down

0 comments on commit 23baa55

Please sign in to comment.