Skip to content

Commit

Permalink
chore(tslint): add allow-leading-underscore rule
Browse files Browse the repository at this point in the history
  • Loading branch information
kalitine committed Jul 10, 2018
1 parent b3ab810 commit be2e941
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"no-switch-case-fall-through": true,
"object-literal-sort-keys": false,
"interface-name": false,
"no-shadowed-variable": false
"no-shadowed-variable": false,
"variable-name": {
"options": ["ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"]
}
}
}

0 comments on commit be2e941

Please sign in to comment.