forked from mirrors/homebox
bd321af29f
* new PR tasks * add homebox to know words * formatting * bump deps * generate db models * ts errors * drop id * fix accessor * drop unused time field * change CI * add expected error * add type check * resolve serveral type errors * hoise in CI
34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"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"
|
|
},
|
|
"cSpell.words": [
|
|
"debughandlers",
|
|
"Homebox"
|
|
],
|
|
// use ESLint to format code on save
|
|
"editor.formatOnSave": false,
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
|
},
|
|
"eslint.format.enable": true,
|
|
"css.validate": false,
|
|
"tailwindCSS.includeLanguages": {
|
|
"vue": "html",
|
|
"vue-html": "html"
|
|
},
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
},
|
|
"tailwindCSS.experimental.configFile": "./frontend/tailwind.config.js"
|
|
}
|