Skip to content

Commit e181128

Browse files
authored
chore(ng): disable eslint eqeqeq for html (#1431)
1 parent 9278f29 commit e181128

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

packages/igx-templates/igx-ts-legacy/projects/_base/files/eslint.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ export default [
2929
},
3030
{
3131
files: ['**/*.html'],
32+
rules: {
33+
eqeqeq: 'off'
34+
},
3235
languageOptions: {
3336
parser: '@angular-eslint/template-parser'
3437
},

packages/igx-templates/igx-ts/projects/_base/files/eslint.config.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ export default [
2626
...compat.extends('plugin:@angular-eslint/template/recommended'),
2727
{
2828
files: ['**/*.html'],
29-
rules: {},
29+
rules: {
30+
eqeqeq: 'off'
31+
},
3032
},
3133
{
3234
ignores: ['projects/**/*']

0 commit comments

Comments
 (0)