Skip to content
This repository has been archived by the owner on Dec 4, 2022. It is now read-only.

Commit

Permalink
fix(core): set max-file-line-count to 400 (#46)
Browse files Browse the repository at this point in the history
Closes #33
  • Loading branch information
fulls1z3 authored Jul 4, 2019
1 parent ea5e472 commit bfcc358
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -652,9 +652,9 @@ blocks.
]
```

- Files should not exceed **1500 lines** of code.
- Files should not exceed **400 lines** of code.
```json
"max-file-line-count": [true, 1500]
"max-file-line-count": [true, 400]
```

- Keep the length of **each line** under **140 characters**.
Expand Down
2 changes: 1 addition & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
],
"max-file-line-count": [
true,
1000
400
],
"max-line-length": [
true,
Expand Down

0 comments on commit bfcc358

Please sign in to comment.