Skip to content

Commit 17d497d

Browse files
committed
Update eslint stuff
1 parent c7fd4b6 commit 17d497d

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

eslint.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ export default tseslint.config(
1818
files: ['src/emulation/{sync,async,promises}.ts'],
1919
rules: {
2020
'@typescript-eslint/no-explicit-any': 'off',
21-
'@typescript-eslint/no-unsafe-argument': 'off',
2221
},
2322
},
2423
{ name: 'Ignores', ignores: ['tests/{fixtures,coverage}'] }

eslint.shared.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ export default [
4040
'@typescript-eslint/no-unsafe-member-access': 'off',
4141
'@typescript-eslint/no-unsafe-argument': 'off',
4242
'@typescript-eslint/no-unsafe-assignment': 'off',
43-
'@typescript-eslint/no-unsafe-return': 'warn',
43+
'@typescript-eslint/no-unsafe-return': 'off',
4444
'@typescript-eslint/no-redundant-type-constituents': 'warn',
45-
'@typescript-eslint/no-unsafe-call': 'warn',
45+
'@typescript-eslint/no-unsafe-call': 'off',
4646
'@typescript-eslint/restrict-plus-operands': 'off',
4747
'@typescript-eslint/no-base-to-string': 'off',
4848
},

src/utils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable @typescript-eslint/no-unsafe-member-access,@typescript-eslint/no-unsafe-call,@typescript-eslint/no-unsafe-return */
21
import type * as fs from 'node:fs';
32
import { randomHex, type ClassLike, type OptionalTuple } from 'utilium';
43
import { resolve, type AbsolutePath } from './emulation/path.js';

0 commit comments

Comments
 (0)