chinchiheather / tslint-lines-between-class-members

Custom rule for TSLint to enforce blank lines between class methods - achieves a similar thing to lines-between-class-members in ESLint
18 stars 5 forks source link

fix seem not respect tab size #15

Closed canemacchina closed 5 years ago

canemacchina commented 5 years ago

After running tslint --fix, this is the diff:

     }
-    public pause (): void {
+
+  public pause (): void {

As you can see, the rule insert two space, and not four (my tslint.conf have "indent": [ true, "spaces", 4 ])

chinchiheather commented 5 years ago

I think this should have been resolved by the fix for #21 - let me know if you still experience this problem after updating to 1.3.4