Skip to content

Commit

Permalink
Update eslint stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Dec 24, 2024
1 parent c7fd4b6 commit 17d497d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export default tseslint.config(
files: ['src/emulation/{sync,async,promises}.ts'],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
},
},
{ name: 'Ignores', ignores: ['tests/{fixtures,coverage}'] }
Expand Down
4 changes: 2 additions & 2 deletions eslint.shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ export default [
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-return': 'warn',
'@typescript-eslint/no-unsafe-return': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'warn',
'@typescript-eslint/no-unsafe-call': 'warn',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/restrict-plus-operands': 'off',
'@typescript-eslint/no-base-to-string': 'off',
},
Expand Down
1 change: 0 additions & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/no-unsafe-member-access,@typescript-eslint/no-unsafe-call,@typescript-eslint/no-unsafe-return */
import type * as fs from 'node:fs';
import { randomHex, type ClassLike, type OptionalTuple } from 'utilium';
import { resolve, type AbsolutePath } from './emulation/path.js';
Expand Down

0 comments on commit 17d497d

Please sign in to comment.