-
-
Notifications
You must be signed in to change notification settings - Fork 255
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
refactor: Finish implementing ListItem.fromListItemLine() #3374
Conversation
|
originalMarkdown: string, | ||
parent: ListItem | null, | ||
taskLocation: TaskLocation, | ||
): ListItem | null { |
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.
@ilandikov I've realised that I named this PR incorrectly...
I had forgotten that we still needed to change ListItem.fromListItemLine()
to return null
if the line wasn't actually a list item...
Types of changes
Done by pairing with @ilandikov.
Internal changes:
refactor
- non-breaking change which only improves the design or structure of existing code, and making no changes to its external behaviour)test
- additions and improvements to unit tests and the smoke tests)Description
ListItem.fromListItemLine()
now returnsnull
if the given line is not a list item.This makes it consistent with the corresponding method on
Task
and fixes a failing test.Motivation and Context
How has this been tested?
Unit tests.
Checklist
yarn run lint
.Terms