Skip to content

Commit 413c89e

Browse files
author
Marek Rozmus
committed
Fix styles and disable stylelint autofix which brakes code
1 parent 818647e commit 413c89e

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

examples/src/app.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ footer a:hover {
9999
}
100100

101101
.contentRight {
102-
composes: contentleft; /* stylelint-disable-line value-keyword-case */
102+
composes: contentLeft; /* stylelint-disable-line value-keyword-case */
103103
background-color: green;
104104
justify-content: flex-end;
105105
}

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,6 @@
8383
"prettier --write",
8484
"eslint --fix",
8585
"jest --bail --findRelatedTests"
86-
],
87-
"*.css": [
88-
"stylelint --fix"
8986
]
9087
}
9188
}

src/SwipeableListItem.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222

2323
.contentLeft {
24-
composes: contentright; /* stylelint-disable-line value-keyword-case */
24+
composes: contentRight; /* stylelint-disable-line value-keyword-case */
2525
justify-content: flex-end;
2626
}
2727

@@ -30,11 +30,11 @@
3030
}
3131

3232
.contentLeftReturn {
33-
composes: contentleft return; /* stylelint-disable-line value-keyword-case */
33+
composes: contentLeft return; /* stylelint-disable-line value-keyword-case */
3434
}
3535

3636
.contentRightReturn {
37-
composes: contentright return; /* stylelint-disable-line value-keyword-case */
37+
composes: contentRight return; /* stylelint-disable-line value-keyword-case */
3838
}
3939

4040
.content {

0 commit comments

Comments
 (0)