From b40be8d891d52d2eb64ee688509f81d3e3eef9a3 Mon Sep 17 00:00:00 2001 From: Priyank Patel Date: Wed, 19 Jun 2019 15:44:39 -0400 Subject: [PATCH] xo: Disable lines-between-class-members rule. Apparently this doesn't work well with typescript files. For example this will throw this linting error: class Test { a: boolean; b: string; // needs a new line before this one to fix this linting error } --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 58616016..30ff0edf 100644 --- a/package.json +++ b/package.json @@ -193,7 +193,8 @@ "prefer-promise-reject-errors": 0, "import/no-unresolved": 0, "import/no-extraneous-dependencies": 0, - "no-prototype-builtins": 0 + "no-prototype-builtins": 0, + "lines-between-class-members": 0 } } ],