From 576449cdc76442cb6636a7672a58c58ce1f52c86 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Wed, 9 Aug 2023 17:24:48 +0200 Subject: [PATCH] Switched to TypeScript eslint config refs https://github.com/TryGhost/DevOps/issues/50 - we have a TS config for this now so this switches over to that --- ghost/post-events/.eslintrc.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ghost/post-events/.eslintrc.js b/ghost/post-events/.eslintrc.js index ecc28524e8..cb690be63f 100644 --- a/ghost/post-events/.eslintrc.js +++ b/ghost/post-events/.eslintrc.js @@ -1,7 +1,6 @@ module.exports = { - parser: '@typescript-eslint/parser', plugins: ['ghost'], extends: [ - 'plugin:ghost/node' + 'plugin:ghost/ts' ] };