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;
Ensures that all
@deprecatedtags have an accompanying message. I created denoland/std#4577 to compensate for this instd.Fails:
Passes: