Skip to content

Commit

Permalink
update README and add indent rule to tslint.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwinr committed Nov 13, 2014
1 parent 25eaa5d commit 821e6d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ A sample configuration file with all options is available [here](https://github.
* `curly` enforces braces for `if`/`for`/`do`/`while` statements.
* `eofline` enforces the file to end with a newline.
* `forin` enforces a `for ... in` statement to be filtered with an `if` statement.*
* `indent` enforces consistent indentation levels (currently disabled).
* `indent` enforces consistent indentation with tabs or spaces.
* `interface-name` enforces the rule that interface names must begin with a capital 'I'
* `jsdoc-format` enforces basic format rules for jsdoc comments -- comments starting with `/**`
* each line contains an asterisk and asterisks must be aligned
Expand Down
2 changes: 1 addition & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"curly": true,
"eofline": true,
"forin": true,
"indent": false,
"indent": [true, "spaces"],
"label-position": true,
"label-undefined": true,
"max-line-length": [true, 140],
Expand Down

0 comments on commit 821e6d9

Please sign in to comment.