Skip to content

Commit

Permalink
Update .eslintrc.json
Browse files Browse the repository at this point in the history
  • Loading branch information
tja4472 committed Dec 14, 2024
1 parent 8796289 commit 6b99010
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@
"rules": {
"testing-library/prefer-explicit-assert": "error",
"jest/consistent-test-it": ["error"],
"jest/expect-expect": "off"
"jest/expect-expect": "off",
"@typescript-eslint/unbound-method": "off",
"jest/unbound-method": "error"
}
}
]
Expand Down
1 change: 0 additions & 1 deletion src/+examples/test-service/service-to-test-auto.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// service-to-test-auto.spec.ts
/* eslint-disable @typescript-eslint/unbound-method */
import { TestBed } from '@angular/core/testing';

import { describe, expect, it, jest } from '@jest/globals';
Expand Down
1 change: 0 additions & 1 deletion src/+examples/test-service/service-to-test.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// service-to-test.spec.ts
/* eslint-disable @typescript-eslint/unbound-method */
import { TestBed } from '@angular/core/testing';

import { describe, expect, it, jest } from '@jest/globals';
Expand Down

0 comments on commit 6b99010

Please sign in to comment.