mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 08:35:43 +00:00
e8449b3a73
* fix inaccruate 401 error on SQL db error * init golangci-lint config * linter autofix * testify auto fixes * fix sqlite busy errors * fix naming * more linter errors * fix rest of linter issues
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": "explicit"
|
|
},
|
|
"[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"
|
|
}
|