-
Notifications
You must be signed in to change notification settings - Fork 243
fix(editor): Remove overrides from default config #2357
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,8 +46,6 @@ const ZED_SETTINGS = { | |
| settings: { | ||
| run: 'onType', | ||
| fixKind: 'safe_fix', | ||
| typeAware: true, | ||
| unusedDisableDirectives: 'deny', | ||
| }, | ||
|
Comment on lines
48
to
49
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When a project already has the Useful? React with 👍 / 👎.
Comment on lines
48
to
49
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When users follow the manual Zed setup instead of generating the file, Useful? React with 👍 / 👎. |
||
| }, | ||
| }, | ||
|
|
||
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.
For projects produced by the normal
vp create/vp migratepath without abaseUrl,injectLintTypeCheckDefaultsexplicitly enableslint.options.typeAware, but the Oxlint language server does not consume the Vite+ lint block and now receives no correspondingtypeAwareinitialization option. Consequently, Zed stops reporting the type-aware rules thatvp lintruns, merely reversing the mismatch this change intends to prevent; the editor settings need to reflect the resolved project lint option rather than unconditionally dropping it.Useful? React with 👍 / 👎.