1
Fork 0
userstyles/package.json

23 lines
511 B
JSON
Raw Normal View History

{
2022-10-03 22:57:48 +00:00
"private": true,
"scripts": {
2022-10-03 22:57:48 +00:00
"test": "cargo make complete-check && stylelint 'source/**/*.scss'"
},
"devDependencies": {
2022-10-03 22:57:48 +00:00
"stylelint": "^14.12.1",
"stylelint-config-standard-scss": "^5.0.0"
},
2020-03-01 21:40:01 +00:00
"stylelint": {
"extends": [
2022-10-03 22:57:48 +00:00
"stylelint-config-standard-scss"
2020-03-01 21:40:01 +00:00
],
"rules": {
2020-03-01 21:40:01 +00:00
"at-rule-no-unknown": null,
"block-no-empty": null,
2022-10-03 22:57:48 +00:00
"no-descending-specificity": null,
"no-invalid-position-at-import-rule": null,
"string-quotes": "single"
2020-03-01 21:40:01 +00:00
}
}
}