-
Notifications
You must be signed in to change notification settings - Fork 31k
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
Allow codeActionsOnSave to trigger for autoSave #190516
Merged
justschen
merged 26 commits into
microsoft:main
from
justschen:justin/codeActions-autoSave
Sep 14, 2023
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
6e59df2
removed saveReason check for autosave
justschen 8af05c5
Merge branch 'main' into justin/codeActions-autoSave
justschen 70f859c
Merge branch 'microsoft:main' into justin/codeActions-autoSave
justschen 7087d2b
Merge branch 'main' into justin/codeActions-autoSave
justschen 901429b
modified setting values and enabling on autosave or not
justschen 301f9dd
cleanup
justschen 3f7b685
Merge branch 'main' into justin/codeActions-autoSave
justschen 7e45d09
add default to false settings
justschen d8ee559
Merge branch 'main' into justin/codeActions-autoSave
justschen f86e16e
modified code action save settings
justschen de0fe63
changed default setting
justschen 29de6ce
Merge branch 'main' into justin/codeActions-autoSave
justschen 46de666
cleanup code and added backward compatibility
justschen 6be4532
aded minor comment and checking commit signing
justschen 1d0cf83
second check on commit signing (sorry)
justschen edcc315
Merge branch 'main' into justin/codeActions-autoSave
justschen cefc88a
fix typo
justschen 687ad2f
small bugfix and adding proper backward compatibility
justschen 0e6d06c
Merge branch 'main' into justin/codeActions-autoSave
justschen 0159ae8
Merge branch 'microsoft:main' into justin/codeActions-autoSave
justschen 0fdc456
Merge branch 'main' into justin/codeActions-autoSave
justschen 995c5e1
Merge branch 'main' into justin/codeActions-autoSave
justschen 2b5f998
deprecate boolean values by converting them
justschen 7c0770b
Merge branch 'microsoft:main' into justin/codeActions-autoSave
justschen 2cbe61c
Merge branch 'main' into justin/codeActions-autoSave
justschen d9f3715
Merge branch 'main' into justin/codeActions-autoSave
justschen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Instead of handling the boolean values below, can you add logic here that converts the old boolean settings to the new enum values:
false -> "never"
,true -> "explict"
. That should simplify the logic