1
Fork 0
userstyles/package.json

28 lines
579 B
JSON
Raw Normal View History

{
"name": "userstyles",
2021-08-30 12:48:50 +00:00
"version": "0.0.0",
"license": "AGPL-3.0-or-later",
"scripts": {
2021-08-30 12:48:50 +00:00
"test": "stylelint 'source/**/*.scss'"
},
"devDependencies": {
2021-08-30 12:48:50 +00:00
"stylelint": "^13.13.1",
"stylelint-config-xo-scss": "^0.14.0",
"stylelint-config-xo-space": "^0.15.1"
},
2020-03-01 21:40:01 +00:00
"stylelint": {
"extends": [
"stylelint-config-xo-scss",
"stylelint-config-xo-space"
],
"ignoreFiles": [
"build/**/*.css"
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,
"no-descending-specificity": null
}
}
}