Tune down eslint regarding unused method parameters

This commit is contained in:
Simon Edwards 2021-08-15 11:38:33 +02:00
parent c209fe2adc
commit 5fd23f0ba3

View File

@ -22,6 +22,7 @@ module.exports = {
'@typescript-eslint/camelcase': 0, '@typescript-eslint/camelcase': 0,
'@typescript-eslint/no-var-requires': 0, '@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/no-explicit-any': 0, '@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-unused-vars': ['warn', { args: 'none' }],
}, },
}, },
], ],