Skip to content

Commit

Permalink
"< 0" means less than zero, not greater than (palantir#4183)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuela authored and Josh Goldberg committed Nov 6, 2018
1 parent 85d87d1 commit 191f5e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/maxLineLengthRule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class Rule extends Lint.Rules.AbstractRule {
It can take one argument, which can be any of the following:
* integer indicating maximum length of lines.
* object with keys:
* \`limit\` - number < 0 defining max line length
* \`limit\` - number greater than 0 defining the max line length
* \`ignore-pattern\` - string defining ignore pattern for this rule, being parsed by \`new RegExp()\`.
For example:
* \`\/\/ \` pattern will ignore all in-line comments.
Expand Down

0 comments on commit 191f5e4

Please sign in to comment.