diff --git a/packages/scripts/config/.eslintrc.js b/packages/scripts/config/.eslintrc.js index 68e37cf71d9cc5..8515968f9386b9 100644 --- a/packages/scripts/config/.eslintrc.js +++ b/packages/scripts/config/.eslintrc.js @@ -1,14 +1,6 @@ const eslintConfig = { root: true, - extends: [ - 'plugin:@wordpress/eslint-plugin/recommended', - - // Temporary workaround to use linting rules for both e2e and unit tests with all files - // until override files globbing logic is fixed when using with --config. - // @see https://github.com/eslint/eslint/issues/11558 - 'plugin:@wordpress/eslint-plugin/test-e2e', - 'plugin:@wordpress/eslint-plugin/test-unit', - ], + extends: [ 'plugin:@wordpress/eslint-plugin/recommended' ], }; module.exports = eslintConfig;