-
-
Notifications
You must be signed in to change notification settings - Fork 317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[code-infra] Polish VS Code DX #4562
base: master
Are you sure you want to change the base?
[code-infra] Polish VS Code DX #4562
Conversation
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "explicit" | ||
}, | ||
"editor.formatOnSave": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How mui/material-ui#44865 started, I was annoyed by this setting. It felt too opinionated to be shared with everyone.
Signed-off-by: Olivier Tassinari <[email protected]>
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
trim_trailing_whitespace = true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
isn't this already defined by prettier config? i.e. you need to set up your editor to format/highlight with a prettier extension instead. feels a bit redundant to define this twice
mui/material-ui#44865