nitro-react/.vscode/settings.json

42 lines
1.2 KiB
JSON
Raw Normal View History

2021-04-14 20:24:24 +02:00
{
"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",
2021-04-14 20:24:24 +02:00
"editor.codeActionsOnSave": {
2024-03-21 03:39:51 +01:00
"source.fixAll.eslint": "explicit",
"source.fixAll.sortJSON": "never",
2024-04-12 02:58:34 +02:00
"source.organizeImports": "always"
2021-04-14 20:24:24 +02:00
},
2024-04-12 02:58:34 +02:00
"editor.formatOnSave": true,
2022-07-13 05:17:51 +02:00
"git.ignoreLimitWarning": true,
2021-04-14 20:24:24 +02:00
"files.eol": "\n",
"files.insertFinalNewline": true,
2021-06-28 18:32:06 +02:00
"files.trimFinalNewlines": true,
2022-04-01 19:33:08 +02:00
"emmet.showExpandedAbbreviation": "never",
"eslint.format.enable": true,
2022-07-13 05:17:51 +02:00
"eslint.validate": [
"javascript",
"typescript"
2022-07-13 05:17:51 +02:00
],
"eslint.workingDirectories": [
{
"pattern": "./src"
}
],
"javascript.format.enable": false,
2024-04-12 02:58:34 +02:00
"editor.linkedEditing": false,
"tailwindCSS.includeLanguages": {
"html": "html",
"javascript": "javascript",
"css": "css"
},
"tailwindCSS.experimental.classRegex": [
],
"editor.quickSuggestions": {
"strings": true
}
2021-04-14 20:24:24 +02:00
}