Skip to content
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

Async rule changes #156

Merged
merged 12 commits into from
Sep 26, 2024
5 changes: 2 additions & 3 deletions packages/eslint-config-angular/requiring-type-checking.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@ module.exports = {
files: ['*.spec.ts'],
rules: {
/*
The jasminewd2 library used by Angular applications results in a significant number of
floating promises and unbound methods so these rules are disabled for test specs in Angular projects.
Spies used by Angular application tests result in a significant number of
unbound methods so this rule is disabled for test specs in Angular projects.
*/
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/unbound-method': 'off',
jattasNI marked this conversation as resolved.
Show resolved Hide resolved
}
},
Expand Down
Loading