From ba9f5d22a2b4e5363ee402dec7776bc9dae2abd3 Mon Sep 17 00:00:00 2001 From: Tom Wanzek Date: Tue, 7 Mar 2017 21:53:29 -0500 Subject: [PATCH] [d3-geo] * Disable linting for maximum line length so that definition header comment line does not have to be broken up. --- d3-geo/tslint.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/d3-geo/tslint.json b/d3-geo/tslint.json index 68d10d72a6..6a00563639 100644 --- a/d3-geo/tslint.json +++ b/d3-geo/tslint.json @@ -1,6 +1,7 @@ { "extends": "../tslint.json", "rules": { - "unified-signatures": false + "unified-signatures": false, + "max-line-length": [false, 200] } }