Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
adjusted rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Mebus authored and marvinhagemeister committed Aug 1, 2018
1 parent 53bb985 commit 141c74b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ module.exports = {
}],

// Style
"at-rule-blacklist": [
"extend"
],
"at-rule-empty-line-before": [
"always",
{
Expand Down Expand Up @@ -74,10 +77,14 @@ module.exports = {
"declaration-colon-newline-after": null,
"declaration-empty-line-before": null,
"function-name-case": null,
"max-nesting-depth": 3,
"max-nesting-depth": [3, {
ignoreAtRules: [
"for",
"include"
]
}],
"number-leading-zero": null,
"selector-max-compound-selectors": null,
"shorthand-property-no-redundant-values": null,
"unit-blacklist": ["px", { "severity": "warning" }]
"shorthand-property-no-redundant-values": null
}
};

0 comments on commit 141c74b

Please sign in to comment.