2022-09-12 22:47:27 +00: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-25 02:24:18 +00:00
|
|
|
},
|
|
|
|
"cSpell.words": [
|
2023-02-18 06:41:01 +00:00
|
|
|
"debughandlers",
|
|
|
|
"Homebox"
|
2022-12-05 21:36:32 +00:00
|
|
|
],
|
|
|
|
// use ESLint to format code on save
|
2023-01-14 18:24:11 +00:00
|
|
|
"editor.formatOnSave": false,
|
2022-12-05 21:36:32 +00:00
|
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
"source.fixAll.eslint": true
|
|
|
|
},
|
|
|
|
"[typescript]": {
|
|
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
|
|
|
},
|
2022-12-30 01:19:15 +00:00
|
|
|
"eslint.format.enable": true,
|
2023-01-22 06:15:23 +00: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 22:47:27 +00:00
|
|
|
}
|