-
Notifications
You must be signed in to change notification settings - Fork 885
Converted completed-docs rule to use a function instead of a walker #3466
Converted completed-docs rule to use a function instead of a walker #3466
Conversation
No rule logic is changed: just the types of scoping used to call it.
private static modifierAliases: { [i: string]: string } = { | ||
export: "exported", | ||
}; | ||
const modifierAliases: { [i: string]: string } = { |
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.
: string | undefined
to be precise
Unrelated build failures:
|
@JoshuaKGoldberg please hit the "Rebuild" button in CircleCI and ping me when it's done. After CI is green I can merge this. |
@ajafff could you? I don't have permissions to.
|
Neither do I. Maybe if you log into CircleCI again. |
tslint.json
Outdated
@@ -4,6 +4,8 @@ | |||
}, | |||
"extends": "tslint:all", | |||
"rules": { | |||
"linebreak-style": false, |
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 was probably not intended to be commited. Please revert this change.
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.
Agh..
Thanks @JoshuaKGoldberg |
No rule logic is changed: just the types of scoping used to call it.