We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de89459 commit 3fba14eCopy full SHA for 3fba14e
1 file changed
scripts/tslint/noIncrementDecrementRule.ts
@@ -3,7 +3,7 @@ import * as ts from "typescript";
3
4
5
export class Rule extends Lint.Rules.AbstractRule {
6
- public static FAILURE_STRING = "Don't use '++' or '--' operators outside for for loops or statements - prefer '+= 1' and '-= 1'.";
+ public static FAILURE_STRING = "Don't use '++' or '--' operators outside for loops or statements - prefer '+= 1' and '-= 1'.";
7
8
public apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] {
9
return this.applyWithWalker(new IncrementDecrementWalker(sourceFile, this.getOptions()));
0 commit comments