Skip to content

Commit 355d55f

Browse files
committed
fix(lint): removing process inline templates
1 parent b58781b commit 355d55f

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ export default [{
2323
],
2424
}, ...compat.extends(
2525
"plugin:@angular-eslint/recommended",
26-
"plugin:@angular-eslint/template/process-inline-templates",
2726
).map(config => ({
2827
...config,
2928
files: ["**/*.ts"],
@@ -41,6 +40,7 @@ export default [{
4140
parserOptions: {
4241
project: ["tsconfig.json"],
4342
createDefaultProgram: true,
43+
suppressParseErrors: true
4444
},
4545
},
4646

package-lock.json

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projects/igniteui-angular/src/lib/test-utils/tree-grid-functions.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export class TreeGridFunctions {
207207
/**
208208
* Verifies that the specified column is the tree column, that contains the tree cells, when there are multi column headers.
209209
*/
210-
public static verifyTreeColumnInMultiColHeaders(fix, expectedTreeColumnKey, expectedColumnsCount) {
210+
public static verifyTreeColumnInMultiColHeaders(fix, _expectedTreeColumnKey, expectedColumnsCount) {
211211
const headersDOM = TreeGridFunctions.sortElementsHorizontally(fix.debugElement.queryAll(By.css('igx-grid-header')));
212212
const leftMostHeaders = headersDOM.filter(x =>
213213
x.nativeElement.getBoundingClientRect().left === headersDOM[0].nativeElement.getBoundingClientRect().left);

0 commit comments

Comments
 (0)