aboutsummaryrefslogtreecommitdiff
path: root/eslint.config.ts
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2025-02-07 00:39:52 +0100
committerGitHub <[email protected]>2025-02-07 00:39:52 +0100
commitf9dd56009688f73ab6e7090083f5678741439dd5 (patch)
tree5a1cdcf62e3c16476d716b0bc0fe9016ddf0daed /eslint.config.ts
parent3f7633d32fdc71f71a3de0495bad590313860241 (diff)
downloadfaker-f9dd56009688f73ab6e7090083f5678741439dd5.tar.xz
faker-f9dd56009688f73ab6e7090083f5678741439dd5.zip
chore(deps): update eslint (#3383)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: ST-DDT <[email protected]>
Diffstat (limited to 'eslint.config.ts')
-rw-r--r--eslint.config.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/eslint.config.ts b/eslint.config.ts
index 2e24b6ce..55020443 100644
--- a/eslint.config.ts
+++ b/eslint.config.ts
@@ -87,6 +87,7 @@ const config: ReturnType<typeof tseslint.config> = tseslint.config(
trailingUnderscore: 'forbid',
},
],
+ '@typescript-eslint/no-misused-spread': 'off', // string spreading is fine (mostly)
'@typescript-eslint/no-confusing-void-expression': [
'error',
{
@@ -97,6 +98,7 @@ const config: ReturnType<typeof tseslint.config> = tseslint.config(
'error',
{ ignoreParameters: true },
],
+ '@typescript-eslint/no-unnecessary-boolean-literal-compare': 'off', // requires `strictNullChecks` to be enabled
'@typescript-eslint/no-unnecessary-condition': 'off', // requires `strictNullChecks` to be enabled
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',