1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-17 16:45:31 -04:00

fix weird character encoding (no clue how non-breaking spaces ended up everywhere)

This commit is contained in:
2021-12-11 11:08:30 -05:00
parent 8fe68b009b
commit b82be240a7
18 changed files with 91 additions and 76 deletions

23
.vscode/settings.json vendored
View File

@@ -8,7 +8,26 @@
"css.validate": false,
"scss.validate": false,
"html.format.templating": true,
"go-template.languages": [
"html",
"json",
"xml",
"atom",
"webmanifest"
],
"go-template.patterns": [
"layouts/**/*"
],
"prettier.requireConfig": true,
"prettier.configPath": ".prettierrc",
"markdown.preview.lineHeight": 1.75
"prettier.configPath": ".prettierrc.json",
"markdown.preview.lineHeight": 1.75,
"stylelint.packageManager": "yarn",
"stylelint.reportNeedlessDisables": true,
"stylelint.reportInvalidScopeDisables": true,
"stylelint.validate": [
"css",
"scss"
],
"npm.packageManager": "yarn",
"eslint.packageManager": "yarn"
}