1
Fork 0

Compare commits

..

No commits in common. "420c6cd93b30ff1d83d7d22b68deb20909495f47" and "3d34c3b377b362d4ce5908f640841752eebace85" have entirely different histories.

2 changed files with 17 additions and 14 deletions

View File

@ -17,11 +17,6 @@ path = "source/main.rs"
askama = "0.11.1"
color-eyre = "0.6.2"
rsass = "0.23.4"
serde_json = "1.0.91"
[dependencies.serde]
features = ["derive"]
version = "1.0.152"
[dependencies.userstyles]
git = "https://git.bauke.xyz/Bauke/userstyles"

View File

@ -9,19 +9,27 @@
"modern-normalize": "^1.1.0"
},
"devDependencies": {
"@bauke/eslint-config": "^0.1.2",
"@bauke/prettier-config": "^0.1.2",
"@bauke/stylelint-config": "^0.1.2",
"stylelint": "^14.16.1",
"xo": "^0.53.1"
"stylelint": "^14.12.1",
"stylelint-config-standard-scss": "^5.0.0",
"xo": "^0.52.3"
},
"prettier": "@bauke/prettier-config",
"stylelint": {
"extends": "@bauke/stylelint-config"
"extends": [
"stylelint-config-standard-scss"
],
"rules": {
"string-quotes": "single"
}
},
"xo": {
"extends": "@bauke/eslint-config",
"prettier": true,
"pretty": true,
"globals": [
"document",
"window"
],
"rules": {
"capitalized-comments": "off"
},
"space": true
}
}