Skip to content

Commit

Permalink
Editor config update for inline suggestions and format on save
Browse files Browse the repository at this point in the history
Enabled inline suggestions and set up code actions on save to fix ESLint issues explicitly. Also, specified esbenp.prettier-vscode as the default formatter and enabled format on save for consistent code formatting.
  • Loading branch information
vnobo committed Jun 25, 2024
1 parent 3812d16 commit 764822b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ui/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,10 @@
"files.autoSave": "afterDelay",
"angular.forceStrictTemplates": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.inlineSuggest.enabled": true
}
"editor.inlineSuggest.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
}

0 comments on commit 764822b

Please sign in to comment.