You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
511 B
JSON
23 lines
511 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "cargo make complete-check && stylelint 'source/**/*.scss'"
|
|
},
|
|
"devDependencies": {
|
|
"stylelint": "^14.12.1",
|
|
"stylelint-config-standard-scss": "^5.0.0"
|
|
},
|
|
"stylelint": {
|
|
"extends": [
|
|
"stylelint-config-standard-scss"
|
|
],
|
|
"rules": {
|
|
"at-rule-no-unknown": null,
|
|
"block-no-empty": null,
|
|
"no-descending-specificity": null,
|
|
"no-invalid-position-at-import-rule": null,
|
|
"string-quotes": "single"
|
|
}
|
|
}
|
|
}
|