From af866df56a2128c9d0ba6973d923d4d25459f102 Mon Sep 17 00:00:00 2001 From: Ariana Ivan Date: Sat, 15 Jun 2024 14:01:34 -0700 Subject: [PATCH] Disable annoying cypress lint warning --- cypress/.eslintrc.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cypress/.eslintrc.js b/cypress/.eslintrc.js index a0577933..91c898c6 100644 --- a/cypress/.eslintrc.js +++ b/cypress/.eslintrc.js @@ -4,4 +4,7 @@ module.exports = { }, extends: ['plugin:cypress/recommended'], plugins: ['cypress'], + rules: { + 'cypress/unsafe-to-chain-command': 0, + }, }