Skip to content

Commit

Permalink
MNT Replace sass-lint with stylelint
Browse files Browse the repository at this point in the history
sass-lint went EOL ages ago
  • Loading branch information
GuySartorelli committed Jun 10, 2024
1 parent 162572d commit bfeba2c
Show file tree
Hide file tree
Showing 6 changed files with 481 additions and 963 deletions.
179 changes: 0 additions & 179 deletions .sass-lint.yml

This file was deleted.

1 change: 1 addition & 0 deletions .stylelintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('@silverstripe/eslint-config/.stylelintrc');
2 changes: 1 addition & 1 deletion client/dist/styles/fluent.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions client/src/styles/fluent.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ $fluent-color-localised: rgb(102, 15, 242);
position: relative;

&:before {
color: white;
color: #fff;
position: absolute;
top: 50%;
line-height: 0;
Expand All @@ -72,7 +72,7 @@ $fluent-color-localised: rgb(102, 15, 242);
background-size: 12px;
border-radius: 5px;
border: 0 none;
color: white;
color: #fff;
padding: 5px 21px 5px 24px;
width: 100%;

Expand All @@ -82,7 +82,7 @@ $fluent-color-localised: rgb(102, 15, 242);
padding: 2px;

> option {
color: white;
color: #fff;
}
}
}
Expand Down Expand Up @@ -146,7 +146,7 @@ $fluent-color-localised: rgb(102, 15, 242);
line-height: 1em;
display: block !important;// sass-lint:disable-line no-important
margin: 0;
padding: 0 11px 8px 11px;
padding: 0 11px 8px;
border-bottom: 1px solid #ccc;
color: #999;

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"dev": "NODE_ENV=development webpack --progress",
"watch": "NODE_ENV=development webpack --watch --progress",
"css": "WEBPACK_CHILD=css npm run build",
"lint": "eslint client/src && sass-lint -v"
"lint": "eslint client/src && stylelint client/src"
},
"repository": {
"type": "git",
Expand All @@ -27,8 +27,8 @@
},
"homepage": "https://github.com/tractorcow-farm/silverstripe-fluent",
"devDependencies": {
"@silverstripe/eslint-config": "^1.0.0-alpha6",
"@silverstripe/webpack-config": "^2.0.0-alpha6",
"@silverstripe/eslint-config": "^1.2.1",
"@silverstripe/webpack-config": "^2.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.0"
},
Expand Down
Loading

0 comments on commit bfeba2c

Please sign in to comment.