-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
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
Make it compatible with typescript-eslint #62
Comments
Hi @IGassmann are there some news about configuring |
@Pringmore I wouldn't know. I'm not personally taking this initiative. |
+1 |
If you extend both the recommend config and the eslint recommended config, it seems to work for me: "extends": [
"google",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
], eslint-recommended disables a bunch of non-typescript rules which conflict with typescript equivalents. |
I think doing this is a great interim strategy:
But, it's quite un-satisfying, if you are a real TypeScript Junkie/fanboy/lover person. Maybe folks would be better off trying to use Angular core's config somehow, or using another eslint config altogether. |
Make
eslint-config-google
rules compatible with the TSLint replacement:typescript-eslint
.This will be valuable for TypeScript projects that follow the Google JavaScript Style Guide, such as Angular.
The text was updated successfully, but these errors were encountered: