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
}
This commit is contained in:
Priyank Patel
2019-06-19 15:44:39 -04:00
committed by Akash Nimare
parent e12d69720d
commit b40be8d891

View File

@@ -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
}
}
],