diff --git a/tests/.eslintrc.js b/tests/.eslintrc.js index 9938cda39..d26dc4ead 100644 --- a/tests/.eslintrc.js +++ b/tests/.eslintrc.js @@ -6,4 +6,18 @@ module.exports = { // console.info allowed to report on long going tasks or valuable debug information 'no-console': ['error', { allow: ['info'] }], }, + overrides: [ + { + files: ['utils/**.js'], + parserOptions: { + ecmaVersion: 2015, + }, + }, + { + files: ['utils/aws-cleanup.js', 'utils/integration.js'], + parserOptions: { + ecmaVersion: 2017, + }, + }, + ], };