Files
robre 4b2300234c
Deploy Portfolio / deploy (push) Successful in 26s
Update: Aktuelle Änderungen
2026-05-10 13:05:00 +02:00

31 lines
956 B
JSON

{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.printWidth": 120,
"editor.rulers": [120],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always",
"source.organizeImports": "always"
},
"javascript.format.semicolons": "insert",
"typescript.format.semicolons": "insert",
"typescript.format.insertSpaceAfterCommaDelimiter": true,
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"explorer.compactFolders": false,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.autoSave": "onFocusChange",
"editor.linkedEditing": true,
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/pnpm-lock.yaml": true
},
"files.watcherExclude": {
"**/node_modules/*/**": true
}
}