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,
|
2022-07-13 05:17:51 +02:00
|
|
|
"typescript.format.enable": false,
|
2021-04-14 20:24:24 +02:00
|
|
|
"editor.codeActionsOnSave": {
|
2022-07-13 05:17:51 +02:00
|
|
|
"source.fixAll.eslint": true,
|
2021-08-03 23:01:59 +02:00
|
|
|
"source.organizeImports": true
|
2021-04-14 20:24:24 +02:00
|
|
|
},
|
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-03-17 06:20:08 +01:00
|
|
|
"editor.wordWrap": "on",
|
2022-04-01 19:33:08 +02:00
|
|
|
"emmet.showExpandedAbbreviation": "never",
|
2022-07-13 05:17:51 +02:00
|
|
|
"eslint.validate": [
|
|
|
|
"javascript",
|
|
|
|
"javascriptreact",
|
|
|
|
"html",
|
|
|
|
"typescriptreact"
|
|
|
|
],
|
|
|
|
"eslint.workingDirectories": [
|
|
|
|
"./src"
|
|
|
|
]
|
2021-04-14 20:24:24 +02:00
|
|
|
}
|