diff --git a/ghost/model-to-domain-event-interceptor/.eslintrc.js b/ghost/model-to-domain-event-interceptor/.eslintrc.js index ecc28524e8..f643d2ce74 100644 --- a/ghost/model-to-domain-event-interceptor/.eslintrc.js +++ b/ghost/model-to-domain-event-interceptor/.eslintrc.js @@ -1,7 +1,11 @@ module.exports = { parser: '@typescript-eslint/parser', - plugins: ['ghost'], + plugins: ['ghost', '@typescript-eslint'], extends: [ 'plugin:ghost/node' - ] + ], + rules: { + 'no-unused-vars': 'off', + '@typescript-eslint/no-unused-vars': ['error'] + } };