@@ -16,8 +16,6 @@ import importPlugin from 'eslint-plugin-import';
16
16
import noOnlyTests from 'eslint-plugin-no-only-tests' ;
17
17
import noSecrets from 'eslint-plugin-no-secrets' ;
18
18
import n from 'eslint-plugin-n' ;
19
- import tsParser from '@typescript-eslint/parser' ;
20
- import jest from 'eslint-plugin-jest' ;
21
19
import js from '@eslint/js' ;
22
20
import prettier from 'eslint-config-prettier' ;
23
21
import { FlatCompat } from '@eslint/eslintrc' ;
@@ -54,7 +52,7 @@ const tsConfigurations = [
54
52
import : importPlugin ,
55
53
} ,
56
54
languageOptions : {
57
- parser : tsParser ,
55
+ parser : ts . parser ,
58
56
ecmaVersion : 'latest' ,
59
57
sourceType : 'module' ,
60
58
parserOptions : {
@@ -381,6 +379,7 @@ const tsConfigurations = [
381
379
'@checkdigit/no-serve-runtime' : 'error' ,
382
380
'@checkdigit/no-side-effects' : 'off' ,
383
381
'@checkdigit/require-service-call-response-declaration' : 'off' ,
382
+ '@checkdigit/require-assert-message' : 'off' ,
384
383
'@checkdigit/no-status-code-assert' : 'off' ,
385
384
'@typescript-eslint/no-base-to-string' : 'off' ,
386
385
'@typescript-eslint/no-unsafe-argument' : 'off' ,
@@ -457,32 +456,6 @@ const tsConfigurations = [
457
456
'require-yield' : 'off' ,
458
457
} ,
459
458
} ,
460
- {
461
- files : [ '**/*.spec.ts' ] ,
462
- ...jest . configs [ 'flat/recommended' ] ,
463
- rules : {
464
- ...jest . configs [ 'flat/recommended' ] . rules ,
465
- 'jest/expect-expect' : 'off' ,
466
- 'jest/max-nested-describe' : [
467
- 'error' ,
468
- {
469
- max : 1 ,
470
- } ,
471
- ] ,
472
- 'jest/no-duplicate-hooks' : [ 'error' ] ,
473
- 'jest/prefer-hooks-in-order' : [ 'error' ] ,
474
- 'jest/prefer-hooks-on-top' : [ 'error' ] ,
475
- 'jest/no-disabled-tests' : [ 'error' ] ,
476
- 'jest/no-commented-out-tests' : [ 'error' ] ,
477
- 'jest/require-top-level-describe' : [
478
- 'error' ,
479
- {
480
- maxNumberOfTopLevelDescribes : 1 ,
481
- } ,
482
- ] ,
483
- 'jest/no-deprecated-functions' : 'off' ,
484
- } ,
485
- } ,
486
459
{
487
460
files : [ 'src/plugin/**' ] ,
488
461
rules : {
0 commit comments