Skip to content

Commit 909a580

Browse files
authored
build(deps-dev): bump stylelint from 13.13.1 to 15.10.1 (#1393)
1 parent c07f3c8 commit 909a580

File tree

5 files changed

+318
-608
lines changed

5 files changed

+318
-608
lines changed

.stylelintrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"extends": "stylelint-config-standard",
3+
"customSyntax": "postcss-less",
34
"ignoreFiles": [
45
"./src/less/*-vendor.less"
56
],
6-
"rules": { }
7+
"rules": {
8+
"import-notation": "string"
9+
}
710
}

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,15 @@
130130
"mini-css-extract-plugin": "^2.6.1",
131131
"monaco-editor-webpack-plugin": "2.1.0",
132132
"npm-run-all": "^4.1.5",
133+
"postcss": "^8.4.25",
134+
"postcss-less": "^6.0.0",
133135
"prettier": "^2.2.1",
134136
"recursive-readdir": "^2.2.2",
135137
"resolve-url-loader": "^5.0.0",
136138
"rimraf": "^3.0.2",
137139
"standard": "^16.0.3",
138-
"stylelint": "^13.11.0",
139-
"stylelint-config-standard": "^20.0.0",
140+
"stylelint": "^15.10.1",
141+
"stylelint-config-standard": "^34.0.0",
140142
"terser-webpack-plugin": "^5.3.3",
141143
"ts-jest": "^29.1.1",
142144
"ts-loader": "^9.3.1",

src/less/blueprint.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
.bp3-button:hover,
2727
.bp3-button.bp3-minimal:hover {
28-
background-color: rgba(138, 155, 168, 0.15);
28+
background-color: rgb(138 155 168 / 15%);
2929
}
3030

3131
.bp3-menu-item.bp3-active.bp3-intent-primary {

src/less/main.less

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ body {
1818
}
1919

2020
.shadow {
21-
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
21+
box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
2222
}
2323

2424
.timestamp {
@@ -31,8 +31,7 @@ body {
3131

3232
#editors {
3333
display: flex;
34-
flex-direction: row;
35-
flex-wrap: nowrap;
34+
flex-flow: row nowrap;
3635
align-items: stretch;
3736
align-content: stretch;
3837
height: 100%;
@@ -45,7 +44,7 @@ body {
4544

4645
.resize {
4746
width: 6px;
48-
background: rgba(0, 0, 0, 0.2);
47+
background: rgb(0 0 0 / 20%);
4948
margin-left: 9px;
5049
margin-right: 0;
5150
cursor: col-resize;
@@ -61,6 +60,7 @@ body {
6160
height: 200px;
6261
}
6362

63+
/* stylelint-disable-next-line selector-class-pattern */
6464
.editorTitle span {
6565
width: 33%;
6666
display: inline-block;

0 commit comments

Comments
 (0)