Skip to content

Commit 6bab4e3

Browse files
authored
Update to TypeScript 5.8 (#210)
1 parent 0783c52 commit 6bab4e3

7 files changed

+3340
-7963
lines changed

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2021-2024 Check Digit, LLC
3+
Copyright (c) 2021-2025 Check Digit, LLC
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# @checkdigit/eslint-config
22

3-
Copyright (c) 2021-2024 [Check Digit, LLC](https://checkdigit.com)
3+
Copyright © 2021-2025 [Check Digit, LLC](https://checkdigit.com)
44

55
## Install
66

@@ -17,8 +17,8 @@ plugins that are supported by the configuration via `peerDependencies`.
1717
{
1818
// ...
1919
"scripts": {
20-
"lint": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning\" eslint --max-warnings 0 .",
21-
"lint:fix": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning\" eslint . --fix",
20+
"lint": "eslint --max-warnings 0 .",
21+
"lint:fix": "eslint . --fix",
2222
"test": "... && npm run lint",
2323
},
2424
// ...

index.mjs

+2-29
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ import importPlugin from 'eslint-plugin-import';
1616
import noOnlyTests from 'eslint-plugin-no-only-tests';
1717
import noSecrets from 'eslint-plugin-no-secrets';
1818
import n from 'eslint-plugin-n';
19-
import tsParser from '@typescript-eslint/parser';
20-
import jest from 'eslint-plugin-jest';
2119
import js from '@eslint/js';
2220
import prettier from 'eslint-config-prettier';
2321
import { FlatCompat } from '@eslint/eslintrc';
@@ -54,7 +52,7 @@ const tsConfigurations = [
5452
import: importPlugin,
5553
},
5654
languageOptions: {
57-
parser: tsParser,
55+
parser: ts.parser,
5856
ecmaVersion: 'latest',
5957
sourceType: 'module',
6058
parserOptions: {
@@ -381,6 +379,7 @@ const tsConfigurations = [
381379
'@checkdigit/no-serve-runtime': 'error',
382380
'@checkdigit/no-side-effects': 'off',
383381
'@checkdigit/require-service-call-response-declaration': 'off',
382+
'@checkdigit/require-assert-message': 'off',
384383
'@checkdigit/no-status-code-assert': 'off',
385384
'@typescript-eslint/no-base-to-string': 'off',
386385
'@typescript-eslint/no-unsafe-argument': 'off',
@@ -457,32 +456,6 @@ const tsConfigurations = [
457456
'require-yield': 'off',
458457
},
459458
},
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-
},
486459
{
487460
files: ['src/plugin/**'],
488461
rules: {

0 commit comments

Comments
 (0)