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

add babel / esbuild pipes via Hugo, remove terser

This commit is contained in:
2021-06-05 08:35:57 -04:00
parent 1a02c31a32
commit 23debefee2
18 changed files with 1965 additions and 218 deletions

View File

@@ -1,15 +0,0 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"budparr.language-hugo-vscode",
"bungcip.better-toml",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}

31
.vscode/settings.json vendored
View File

@@ -1,31 +0,0 @@
{
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.rulers": [
120
],
"editor.tabSize": 2,
"files.encoding": "utf8",
"files.eol": "\n",
"files.insertFinalNewline": true,
"git.ignoreLimitWarning": true,
"npm.packageManager": "yarn",
"prettier.configPath": ".prettierrc",
"prettier.packageManager": "yarn",
"prettier.printWidth": 120,
"prettier.requireConfig": true,
"prettier.useEditorConfig": false,
"[markdown]": {
"editor.quickSuggestions": false,
"editor.trimAutoWhitespace": false,
"editor.wordWrap": "on"
},
"stylelint.packageManager": "yarn",
"stylelint.validate": [
"css",
"html",
"postcss",
"sass",
"scss"
]
}