Skip to content

Commit

Permalink
pass but show warnings for some things
Browse files Browse the repository at this point in the history
  • Loading branch information
Frenzie committed Feb 29, 2024
1 parent a294b01 commit 97cb8ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 5 additions & 3 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"comment-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-block-single-line-max-declarations": null,
"length-zero-no-unit": null,
"length-zero-no-unit": [true, { "severity": "warning" }],
"no-descending-specificity": [true, { "severity": "warning" }],
"no-duplicate-selectors": [true, { "severity": "warning" }],
"property-no-unknown": [true, {
"ignoreProperties": [
"binding",
Expand All @@ -18,7 +20,6 @@
"selector-type-case": ["lower", {
"ignoreTypes": ["DocFragment", "rubyBox"]
}],

"selector-type-no-unknown": [true, {
"ignoreTypes": [
"noframes",
Expand Down Expand Up @@ -59,6 +60,7 @@
"strikethrough",
"spacing"
]
}]
}],
"shorthand-property-no-redundant-values": null
}
}
4 changes: 1 addition & 3 deletions cr3gui/data/fb2.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,8 @@ title, h1, h2, h3, h4, h5, h6, subtitle {
h1, h2, h3, h4, h5, h6 {
display: block;
margin-top: 0.5em;
margin-bottom: 0.3em;
padding: 10px ;
margin-top: 0.5em;
margin-bottom: 0.5em;
padding: 10px ;
}
title, h1, h2 {
page-break-before: always;
Expand Down

0 comments on commit 97cb8ab

Please sign in to comment.