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

Commit

Permalink
turned off rules that conflict with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Mebus authored and marvinhagemeister committed Aug 27, 2018
1 parent 6309354 commit b17f8b1
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
6 changes: 1 addition & 5 deletions __tests__/fixtures/invalid.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
body {
color: red;
}

h1 {
padding: 0px;
}

h2, h3, h4 {
h2, h3, h4 {
color: blue;
}
.auto {
Expand Down
19 changes: 19 additions & 0 deletions __tests__/fixtures/valid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,22 @@ $i: 6;
}
}
}

.a {
background: linear-gradient(
to right,
red,
orange,
yellow,
green,
blue,
indigo
)
0 0 no-repeat;
}

.a-very-long-class-name
.an-even-longer-very-long-class-name
.a-very-long-class-name {
color: blue;
}
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ module.exports = {
}],

// Style
"indentation": null,
"selector-descendant-combinator-no-non-space": null,
"at-rule-blacklist": [
"extend"
],
Expand Down

0 comments on commit b17f8b1

Please sign in to comment.