I am in the process of transitioning to @typescript-eslint
but I am finding the documentation to be quite inadequate. One specific issue I am facing is the errors like the following:
Line 58: Expected a semicolon @typescript-eslint/member-delimiter-style
My goal is to enforce a rule that disallows semicolons or commas. I did manage to find the documentation for this rule at https://github.com/bradzacher/eslint-plugin-typescript/blob/master/docs/rules/member-delimiter-style.md
However, I am struggling to find any examples on how to configure it within an actual eslint file! Any insights on how to do this would be greatly appreciated.