nitro-react/.vscode/settings.json

33 lines
1.0 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": {
2022-07-13 05:17:51 +02:00
"source.fixAll.eslint": true,
"source.fixAll.sortJSON": false,
"source.organizeImports": true
2021-04-14 20:24:24 +02:00
},
"editor.formatOnSave": false,
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,
"thunder-client.saveToWorkspace": false,
"thunder-client.workspaceRelativePath": "."
2021-04-14 20:24:24 +02:00
}