1
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Bauke 420c6cd93b
Add serde and serde_json dependencies. 2023-01-04 14:43:46 +01:00
Bauke a4b22db9e4
Switch to shareable configs. 2023-01-03 14:41:55 +01:00
2 changed files with 14 additions and 17 deletions

View File

@ -17,6 +17,11 @@ 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,27 +9,19 @@
"modern-normalize": "^1.1.0"
},
"devDependencies": {
"stylelint": "^14.12.1",
"stylelint-config-standard-scss": "^5.0.0",
"xo": "^0.52.3"
"@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"
},
"prettier": "@bauke/prettier-config",
"stylelint": {
"extends": [
"stylelint-config-standard-scss"
],
"rules": {
"string-quotes": "single"
}
"extends": "@bauke/stylelint-config"
},
"xo": {
"pretty": true,
"globals": [
"document",
"window"
],
"rules": {
"capitalized-comments": "off"
},
"extends": "@bauke/eslint-config",
"prettier": true,
"space": true
}
}