-
Notifications
You must be signed in to change notification settings - Fork 65
conditionals: add support for nested indentation #450
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
Open
declanvong
wants to merge
13
commits into
dprint:main
Choose a base branch
from
declanvong:declanvong/cond-expr-nested
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 7 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
a5cc5e4
conditionals: add support for nested indentation
bitnimble 273275c
Update schema.json
dsherret 38a9be5
Move out conditional type from conditional expression.
dsherret 2c9873d
Add back top most data check and only analyze nodes if this option is…
dsherret 0de6f01
Add failing tests.
dsherret 2424d3e
.
a6d106a
.
fae7235
Merge branch 'main' into declanvong/cond-expr-nested
dsherret b9286ad
Merge branch 'main' into declanvong/cond-expr-nested
dsherret f12470b
Add failing test
dsherret 1e8ad44
Update
dsherret 278b0d6
.
827d6cd
reformat
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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
38 changes: 38 additions & 0 deletions
38
...ecs/expressions/ConditionalExpression/ConditionalExpression_UseNestedIndentation_True.txt
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
~~ lineWidth: 50, conditionalExpression.useNestedIndentation: true ~~ | ||
== should handle nested indentation on a basic ternary / conditional expression == | ||
const value = is_prod | ||
? do1() | ||
: is_laptop | ||
? do2() | ||
: do3(); | ||
|
||
[expect] | ||
const value = is_prod | ||
? do1() | ||
: is_laptop | ||
? do2() | ||
: do3(); | ||
|
||
== should keep on single line if fits on a single line == | ||
const value = a ? b ? c : d : e; | ||
|
||
[expect] | ||
const value = a ? b ? c : d : e; | ||
|
||
== should go multi-line when exceeding the line width == | ||
const value = testing ? this ? out : testing : exceedsWidth; | ||
|
||
[expect] | ||
const value = testing | ||
? this ? out : testing | ||
: exceedsWidth; | ||
|
||
== should both go multi-line when exceeding the line width twice == | ||
const value = testing ? this ? out : testingTestingTestingTestingTesting : exceedsWidth; | ||
|
||
[expect] | ||
const value = testing | ||
? this | ||
? out | ||
: testingTestingTestingTestingTesting | ||
: exceedsWidth; |
26 changes: 26 additions & 0 deletions
26
...ecs/types/ConditionalType/ConditionalType_UseNestedIndentation_LinePerExpression_True.txt
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
~~ lineWidth: 80, conditionalType.useNestedIndentation: true, conditionalType.linePerExpression: true ~~ | ||
== should handle nested indentation with extends and mapped types == | ||
export type R<S> = S extends Record<string, T<any, any>> ? { [K in keyof S]: ReturnType<S[K][1]> } : S extends T<infer _T, any> | ||
? _T extends Array<infer I> | ||
? I | ||
: _T : S extends SZ<infer _T, any> ? _T : S extends DZ<infer _T> | ||
? _T : never; | ||
|
||
[expect] | ||
export type R<S> = S extends Record<string, T<any, any>> | ||
? { [K in keyof S]: ReturnType<S[K][1]> } | ||
: S extends T<infer _T, any> | ||
? _T extends Array<infer I> | ||
? I | ||
: _T | ||
: S extends SZ<infer _T, any> | ||
? _T | ||
: S extends DZ<infer _T> | ||
? _T | ||
: never; | ||
|
||
== should keep on single line if fits on a single line == | ||
type Test = A extends B ? C extends D ? c : d : e; | ||
|
||
[expect] | ||
type Test = A extends B ? C extends D ? c : d : e; |
25 changes: 25 additions & 0 deletions
25
tests/specs/types/ConditionalType/ConditionalType_UseNestedIndentation_True.txt
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
~~ lineWidth: 80, conditionalType.useNestedIndentation: true ~~ | ||
== should handle nested indentation with extends and mapped types == | ||
export type R<S> = S extends Record<string, T<any, any>> ? { [K in keyof S]: ReturnType<S[K][1]> } : S extends T<infer _T, any> | ||
? _T extends Array<infer I> | ||
? I | ||
: _T : S extends SZ<infer _T, any> ? _T : S extends DZ<infer _T> | ||
? _T : never; | ||
|
||
[expect] | ||
export type R<S> = S extends Record<string, T<any, any>> | ||
? { [K in keyof S]: ReturnType<S[K][1]> } | ||
: S extends T<infer _T, any> | ||
? _T extends Array<infer I> | ||
? I | ||
: _T | ||
: S extends SZ<infer _T, any> ? _T | ||
: S extends DZ<infer _T> | ||
? _T | ||
: never; | ||
|
||
== should keep on single line if fits on a single line == | ||
type Test = A extends B ? C extends D ? c : d : e; | ||
|
||
[expect] | ||
type Test = A extends B ? C extends D ? c : d : e; |
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.
This is just a typo fix,
const
->cons