diff options
author | bobzel <zzzman@gmail.com> | 2024-09-30 11:22:45 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-09-30 11:22:45 -0400 |
commit | 04f1047d81bba00f9258543a8171683bce5272bb (patch) | |
tree | 2e09704251382f554b0ea7e7c92e1e3a92b1b838 /eslint.config.mjs | |
parent | b08befda6d7ec07a0e6653ccf5040474886dcd44 (diff) | |
parent | 22c1885a7469a6d5e94fff279225665a1ef1448b (diff) |
merged with master
Diffstat (limited to 'eslint.config.mjs')
-rw-r--r-- | eslint.config.mjs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eslint.config.mjs b/eslint.config.mjs index 619966f20..aebdc20d0 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -36,6 +36,7 @@ export default [ 'no-multi-assign': 'off', 'no-underscore-dangle': 'off', 'no-nested-ternary': 'off', + 'no-param-reassign': 'error', 'lines-between-class-members': 'off', 'no-shadow': 'off', '@typescript-eslint/no-shadow': 'warn', @@ -47,9 +48,9 @@ export default [ 'no-return-assign': 'error', 'no-await-in-loop': 'error', 'no-loop-func': 'error', - 'no-cond-assign': 'error', + '@typescript-eslint/no-cond-assign': 'error', 'no-use-before-define': 'error', - 'no-explicit-any': 'error', + '@typescript-eslint/no-explicit-any': 'error', 'no-restricted-globals': ['error', 'event'], }, }, |