From bfcc35859105e3f14d48b28f01bcb0ed52e21da4 Mon Sep 17 00:00:00 2001 From: Burak Tasci Date: Thu, 4 Jul 2019 12:36:08 +0200 Subject: [PATCH] fix(core): set max-file-line-count to 400 (#46) Closes #33 --- README.md | 4 ++-- tslint.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1e781fc..1ec2d4e 100644 --- a/README.md +++ b/README.md @@ -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**. diff --git a/tslint.json b/tslint.json index dea4e23..761ba6f 100644 --- a/tslint.json +++ b/tslint.json @@ -178,7 +178,7 @@ ], "max-file-line-count": [ true, - 1000 + 400 ], "max-line-length": [ true,