From 734cfebd8c2bc230ef7018844e5ddb75813f209b Mon Sep 17 00:00:00 2001 From: Paul Sealock Date: Wed, 8 Jun 2022 14:03:16 +1200 Subject: [PATCH] Clean up eslintrc in favour of defaults --- plugins/woocommerce-beta-tester/.eslintrc | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/plugins/woocommerce-beta-tester/.eslintrc b/plugins/woocommerce-beta-tester/.eslintrc index a6708d0812a..4abb0869fc0 100644 --- a/plugins/woocommerce-beta-tester/.eslintrc +++ b/plugins/woocommerce-beta-tester/.eslintrc @@ -5,31 +5,9 @@ "browser": true, "node": true }, - "globals": { - "wp": true, - "es6": true - }, "rules": { "camelcase": 0, - "indent": 0, - "max-len": [ - 2, - { - "code": 140 - } - ], - "no-console": 1, - // temporary conversion to warnings until the below are all handled. - "@wordpress/i18n-translator-comments": "warn", - "@wordpress/valid-sprintf": "warn", - "jsdoc/check-tag-names": [ - "error", - { "definedTags": [ "jest-environment" ] } - ], "react/react-in-jsx-scope": "off", "no-alert": "off" - }, - "parserOptions": { - "ecmaVersion": 6 } }