nitro-imager/.vscode/settings.json

31 lines
958 B
JSON
Raw Normal View History

2021-09-02 19:31:56 +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-12-15 19:51:10 +01:00
"editor.wordWrap": "on",
2021-09-02 19:31:56 +02:00
"editor.codeActionsOnSave": {
2022-12-15 19:51:10 +01:00
"source.fixAll.eslint": true,
"source.fixAll.sortJSON": false,
"source.organizeImports": true
2021-09-02 19:31:56 +02:00
},
2022-12-15 19:51:10 +01:00
"editor.formatOnSave": false,
"git.ignoreLimitWarning": true,
2021-09-02 19:31:56 +02:00
"files.eol": "\n",
"files.insertFinalNewline": true,
2022-12-15 19:51:10 +01:00
"files.trimFinalNewlines": true,
"emmet.showExpandedAbbreviation": "never",
"eslint.format.enable": true,
"eslint.validate": [
"javascript",
"typescript"
],
"eslint.workingDirectories": [
{
"pattern": "./src/*"
}
],
"javascript.format.enable": false
2021-09-02 19:31:56 +02:00
}