We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34ddaef commit 710b379Copy full SHA for 710b379
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 POSTFIX_FAILURE_STRING = "Don't use '++' or '--' postfix operators outside statements, for loops, or element access expressions.";
+ public static POSTFIX_FAILURE_STRING = "Don't use '++' or '--' postfix operators outside statements or for loops.";
7
public static PREFIX_FAILURE_STRING = "Don't use '++' or '--' prefix operators.";
8
9
public apply(sourceFile: ts.SourceFile): Lint.RuleFailure[] {
0 commit comments