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

Commit bfcc358

Browse files
authored
fix(core): set max-file-line-count to 400 (#46)
Closes #33
1 parent ea5e472 commit bfcc358

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -652,9 +652,9 @@ blocks.
652652
]
653653
```
654654

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

660660
- Keep the length of **each line** under **140 characters**.

tslint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
],
179179
"max-file-line-count": [
180180
true,
181-
1000
181+
400
182182
],
183183
"max-line-length": [
184184
true,

0 commit comments

Comments
 (0)