Skip to content

Commit

Permalink
Fix typo in rule metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
jkillian authored Jun 23, 2016
1 parent 8cbc0e1 commit 8fcec16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/variableNameRule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class Rule extends Lint.Rules.AbstractRule {
* \`"${OPTION_CHECK_FORMAT}"\`: allows only camelCased or UPPER_CASED variable names
* \`"${OPTION_LEADING_UNDERSCORE}"\` allows underscores at the beginning (only has an effect if "check-format" specified)
* \`"${OPTION_TRAILING_UNDERSCORE}"\` allows underscores at the end. (only has an effect if "check-format" specified)
* \`"${OPTION_ALLOW_PASCAL_CASE}\` allows PascalCase in addtion to camelCase.
* \`"${OPTION_ALLOW_PASCAL_CASE}"\` allows PascalCase in addtion to camelCase.
* \`"${OPTION_BAN_KEYWORDS}"\`: disallows the use of certain TypeScript keywords (\`any\`, \`Number\`, \`number\`, \`String\`,
\`string\`, \`Boolean\`, \`boolean\`, \`undefined\`) as variable or parameter names.`,
options: {
Expand Down

0 comments on commit 8fcec16

Please sign in to comment.