mentalHealth/01-Web/.vscode/settings.json

112 lines
2.7 KiB
JSON

{
"files.eol": "\n",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "never",
"source.fixAll.eslint": "explicit",
"source.fixAll.stylelint": "explicit",
"source.organizeImports": "never"
},
"material-icon-theme.folders.associations": {
"enums": "typescript",
"store": "context"
},
"files.associations": {
"*.css": "postcss"
},
"editor.quickSuggestions": {
"strings": "on"
},
"prettier.tabWidth": 2,
"prettier.printWidth": 120,
"prettier.singleAttributePerLine": true,
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"prettier.vueIndentScriptAndStyle": true,
"tsImportSorter.configuration.emptyLinesBetweenGroups": 0,
"tsImportSorter.configuration.wrappingStyle": "prettier",
"tsImportSorter.configuration.excludeGlob": ["auto-imports.d.ts"],
"better-comments.tags": [
{
"tag": "! ",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "? ",
"color": "#60a5fa",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "& ",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "* ",
"color": "#84cc16",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "~ ",
"color": "#22d3ee",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "@ ",
"color": "#34d399",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "$ ",
"color": "#a78bfa",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "% ",
"color": "#e879f9",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
"markdownlint.config": {
"default": true,
"MD033": false
},
"typescript.tsdk": "node_modules\\typescript\\lib",
"unocss.root": ["apps/platform", "apps/client", "apps/portal"],
"eslint.workingDirectories": ["apps/**", "packages/**"]
}