Files
portfolio-selfmade/.vscode/settings.json
T
robre 52bf3b96b1
Deploy Portfolio Selfmade / deploy (push) Successful in 31s
Refactor code structure for improved readability and maintainability
2026-05-10 21:30:31 +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
}
}