2019-09-12 22:16:42 +00:00
|
|
|
module.exports = {
|
2020-08-04 22:00:11 +00:00
|
|
|
'overrides': [
|
2019-09-12 22:16:42 +00:00
|
|
|
{
|
2020-08-04 22:00:11 +00:00
|
|
|
'files': ['tests/**/*.js'],
|
2019-09-12 22:16:42 +00:00
|
|
|
'rules': {
|
|
|
|
// Ignore all unused function arguments, because in some
|
|
|
|
// case they are kept to indicate the function signature.
|
2020-08-04 22:00:11 +00:00
|
|
|
'no-unused-vars': ['error', { 'argsIgnorePattern': '.*' }],
|
|
|
|
'@typescript-eslint/no-unused-vars': 0,
|
|
|
|
},
|
2019-09-12 22:16:42 +00:00
|
|
|
},
|
|
|
|
],
|
2020-08-04 22:00:11 +00:00
|
|
|
};
|