diff options
| author | bobzel <zzzman@gmail.com> | 2024-09-19 20:41:19 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-09-19 20:41:19 -0400 |
| commit | 77e087625bd02cfa170e3f1903b0a744b81380ce (patch) | |
| tree | 85f1c5855fb68c7ab456a03f60e1c03ae0940b2b /eslint.config.mjs | |
| parent | 4c1933b67dad98c7e5e7f77b0bebc8ae2a612bca (diff) | |
| parent | cf7216aec2fd61bc7de43240586532b5d54e7d8b (diff) | |
Merge branch 'master' into zach-starter
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'], }, }, |
