-
Notifications
You must be signed in to change notification settings - Fork 178
Open
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needednew-ruleSuggestion to add a new lint ruleSuggestion to add a new lint rule
Description
Ensures that all @deprecated
tags have an accompanying message. I created denoland/std#4577 to compensate for this in std
.
Fails:
/**
* @deprecated
*/
export const foo = 42;
Passes:
/**
* @deprecated This will be removed in 1.0.0.
*/
export const foo = 42;
iugo and takaebato
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needednew-ruleSuggestion to add a new lint ruleSuggestion to add a new lint rule