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

v5: Revenge of the JavaScript 🦸 (#711)

Hugo ➡️ Next.js
This commit is contained in:
2021-12-30 08:18:41 -05:00
committed by GitHub
parent b7505fa260
commit 9979e1bf3f
577 changed files with 8019 additions and 11864 deletions

View File

@@ -1,13 +1,10 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"editorconfig.editorconfig",
"budparr.language-hugo-vscode",
"dbaeumer.vscode-eslint",
"davidanson.vscode-markdownlint",
"divlo.vscode-styled-jsx-languageserver",
"divlo.vscode-styled-jsx-syntax",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint",
"ms-vscode.wordcount"
"stylelint.vscode-stylelint"
]
}

21
.vscode/settings.json vendored
View File

@@ -5,29 +5,18 @@
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"search.exclude": {
"**/.next": true,
"**/node_modules": true
},
"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.json",
"markdown.preview.lineHeight": 1.75,
"stylelint.packageManager": "yarn",
"stylelint.reportNeedlessDisables": true,
"stylelint.reportInvalidScopeDisables": true,
"stylelint.validate": [
"css",
"scss"
],
"stylelint.validate": ["css", "scss"],
"npm.packageManager": "yarn",
"eslint.packageManager": "yarn"
}