We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eede11d commit 13f2faeCopy full SHA for 13f2fae
projects/igniteui-angular/eslint.config.mjs
@@ -49,6 +49,15 @@ export default [
49
50
"no-debugger": "error",
51
},
52
+ }, {
53
+ files: ["**/*.ts"],
54
+ ignores: ["**/*.spec.ts"],
55
+ rules: {
56
+ "no-restricted-syntax": ["error", {
57
+ selector: "CallExpression[arguments.length=0] MemberExpression[property.name='blur']",
58
+ message: "Avoid using `blur()` on focus-managed components without justification. Move focus elsewhere or disable check and provide reason.",
59
+ }],
60
+ },
61
62
...compat.extends(
63
"plugin:@angular-eslint/template/recommended",
0 commit comments