We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed the linter was not catching errors with my interface's members, so I did a quick test with the following examples:
{ "type": "member", "format": "camelCase" }
Will correctly error with the class example below:
export class FooBar { foo_bar: string }
But will not error with the interface example below:
export interface IFooBar { foo_bar: string }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed the linter was not catching errors with my interface's members, so I did a quick test with the following examples:
Will correctly error with the class example below:
But will not error with the interface example below:
The text was updated successfully, but these errors were encountered: