nitro-react/.vscode/settings.json
xemnasx 10a7dcad24
V3 (#168)
* hotelview update

* more updates

* more updates

* 60% finished

* avatarselector not finished 10%

* avatarselector 100%

* get finally rid of bootstrap and useless deps

* infostand update

* infostand 70%

* get rid of all scss files except one, adding new popover module for continuous work to finish this

* chatinputselector update and cleaning some useless logs

---------

Co-authored-by: xJuice <guencer.aras@hotmail.de>
2024-06-06 19:07:57 -04:00

54 lines
1.5 KiB
JSON

{
"typescript.tsdk": "node_modules\\typescript\\lib",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.quoteStyle": "single",
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,
"typescript.format.placeOpenBraceOnNewLineForFunctions": true,
"editor.wordWrap": "on",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.fixAll.sortJSON": "never",
"source.organizeImports": "always"
},
"editor.formatOnSave": true,
"git.ignoreLimitWarning": true,
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"emmet.showExpandedAbbreviation": "never",
"eslint.format.enable": true,
"eslint.validate": [
"javascript",
"typescript"
],
"eslint.workingDirectories": [
{
"pattern": "./src"
}
],
"javascript.format.enable": false,
"editor.linkedEditing": false,
"tailwindCSS.includeLanguages": {
"html": "html",
"javascript": "javascript",
"css": "css"
},
"tailwindCSS.experimental.classRegex": [
[
"classes \\=([^;]*);",
"'([^']*)'"
],
[
"classes \\=([^;]*);",
"\"([^\"]*)\""
],
[
"classes \\=([^;]*);",
"\\`([^\\`]*)\\`"
]
],
"editor.quickSuggestions": {
"strings": true
}
}