mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
1. Update `stylelint` dependencies - As of stylelint v15, we do not need `stylelint-config-prettier` anymore: https://github.com/prettier/stylelint-config-prettier/releases/tag/v9.0.5 2. Switch to `stylelint-config-standard`: `stylelint-prettier/recommended` has not been updated for a long time and still needs the old `stylelint-config-prettier` 3. Handle new `stylelint` issues
8 lines
126 B
JSON
8 lines
126 B
JSON
{
|
|
"extends": ["stylelint-config-standard"],
|
|
"plugins": ["stylelint-prettier"],
|
|
"rules": {
|
|
"prettier/prettier": true
|
|
}
|
|
}
|