Skip to content

Commit

Permalink
Clarify no-unused-variable deprecation message with "tsc"
Browse files Browse the repository at this point in the history
  • Loading branch information
nchen63 authored Nov 19, 2016
1 parent fbe5fd4 commit 273f160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/noUnusedVariableRule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class Rule extends Lint.Rules.AbstractRule {
/* tslint:disable:object-literal-sort-keys */
public static metadata: Lint.IRuleMetadata = {
ruleName: "no-unused-variable",
deprecationMessage: "Use the compiler options --noUnusedParameters and --noUnusedLocals instead.",
deprecationMessage: "Use the tsc compiler options --noUnusedParameters and --noUnusedLocals instead.",
description: "Disallows unused imports, variables, functions and private class members.",
optionsDescription: Lint.Utils.dedent`
Three optional arguments may be optionally provided:
Expand Down

0 comments on commit 273f160

Please sign in to comment.