2022-09-12 14:47:27 -08:00
|
|
|
{
|
|
|
|
"yaml.schemas": {
|
|
|
|
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
|
|
|
|
},
|
|
|
|
"explorer.fileNesting.enabled": true,
|
|
|
|
"explorer.fileNesting.patterns": {
|
|
|
|
"package.json": "package-lock.json, yarn.lock, .eslintrc.js, tsconfig.json, .prettierrc, .editorconfig, pnpm-lock.yaml, postcss.config.js, tailwind.config.js",
|
|
|
|
"docker-compose.yml": "Dockerfile, .dockerignore, docker-compose.dev.yml, docker-compose.yml",
|
|
|
|
"README.md": "LICENSE, SECURITY.md"
|
2022-10-24 18:24:18 -08:00
|
|
|
},
|
|
|
|
"cSpell.words": [
|
|
|
|
"debughandlers"
|
2022-12-05 12:36:32 -09:00
|
|
|
],
|
|
|
|
// use ESLint to format code on save
|
2023-01-14 10:24:11 -08:00
|
|
|
"editor.formatOnSave": false,
|
2022-12-05 12:36:32 -09:00
|
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
"source.fixAll.eslint": true
|
|
|
|
},
|
|
|
|
"[typescript]": {
|
|
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
|
|
|
},
|
2022-12-29 17:19:15 -08:00
|
|
|
"eslint.format.enable": true,
|
2023-01-21 21:15:23 -09:00
|
|
|
"css.validate": false,
|
|
|
|
"tailwindCSS.includeLanguages": {
|
|
|
|
"vue": "html",
|
|
|
|
"vue-html": "html"
|
|
|
|
},
|
|
|
|
"editor.quickSuggestions": {
|
|
|
|
"strings": true
|
|
|
|
},
|
|
|
|
"tailwindCSS.experimental.configFile": "./frontend/tailwind.config.js"
|
2022-09-12 14:47:27 -08:00
|
|
|
}
|