Skip to content

Commit

Permalink
Infrastructure: Move to Stylelint 15 (#2613)
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni authored Feb 13, 2023
1 parent bf50065 commit d95c6a4
Show file tree
Hide file tree
Showing 7 changed files with 408 additions and 376 deletions.
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Ignore external copied w3c files
common

# Vendored theme files
bootstrap.css
bootstrap-theme.css
10 changes: 9 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
{
"singleQuote": true
"singleQuote": true,
"overrides": [
{
"files": ["**/*.css"],
"options": {
"singleQuote": false
}
}
]
}
5 changes: 2 additions & 3 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": ["stylelint-config-standard", "stylelint-prettier/recommended"],
"extends": ["stylelint-config-standard"],
"rules": {
"media-feature-name-no-unknown": [
true,
Expand All @@ -18,7 +18,6 @@
},
],
"selector-class-pattern": null,
"selector-id-pattern": null,
"prettier/prettier": [true, {"singleQuote": false}]
"selector-id-pattern": null
}
}
2 changes: 1 addition & 1 deletion content/patterns/slider/examples/css/slider-seek.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
stroke: currentcolor;
stroke-width: 2px;
fill: currentcolor;
fill-opacity: 25%;
fill-opacity: 0.25;
}

.slider-seek .thumb {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
stroke: currentcolor;
stroke-width: 2px;
fill: currentcolor;
fill-opacity: 25%;
fill-opacity: 0.25;
}

.slider-temperature .thumb,
Expand Down
Loading

0 comments on commit d95c6a4

Please sign in to comment.