chore: change eslint param reassign

This commit is contained in:
William Oldham 2023-09-18 20:07:37 +01:00
parent 37fdf7ab3b
commit f66c408fd2
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ module.exports = {
'no-eval': 'off',
'no-await-in-loop': 'off',
'no-nested-ternary': 'off',
'no-param-reassign': 'off',
'no-param-reassign': ["error", { "props": false }],
'prefer-destructuring': 'off',
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'import/extensions': [