Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Infrastructure: Move to Stylelint 15 #2613

Merged
merged 1 commit into from
Feb 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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