In my project (playwright + ts) I used a eslint to checking my code. I have problem with one rule 'lines-between-class-members'.
I don't want to use it, so according to documentation in .eslintrc.json file I add 'off'
"lines-between-class-members": "off",
I tried also with value 0, but it also does not working.
E.g. I see error for 2-nd, 3-th variables. 'ESLint: Expected blank line between class members.(@typescript-eslint/lines-between-class-members)' when they are not empty line between.
private var1;
private var2;
private var3
But if I changed value 'off' to 'warn' it is working, instead of error I'm getting warning.
Do you have some suggestions how I could resole my problem. :) Thanks for any tips :)