From a6d87a1ca3663695be8fe29d5d7debd55df70405 Mon Sep 17 00:00:00 2001 From: Victor Grousset/tuxayo Date: Mon, 21 Oct 2024 18:31:41 +0200 Subject: [PATCH] Bug 38167: Make Prettier and ESLint happier for cypress/plugins/index.js --- t/cypress/plugins/index.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/t/cypress/plugins/index.js b/t/cypress/plugins/index.js index 042e8ef88a..d038b8c821 100644 --- a/t/cypress/plugins/index.js +++ b/t/cypress/plugins/index.js @@ -1,17 +1,17 @@ -const { startDevServer } = require('@cypress/webpack-dev-server') +const { startDevServer } = require("@cypress/webpack-dev-server"); module.exports = (on, config) => { - on('dev-server:start', options => - startDevServer({ - options, - }) - ) + on("dev-server:start", options => + startDevServer({ + options, + }) + ); - return config -} + return config; +}; -const mysql = require('cypress-mysql'); +const mysql = require("cypress-mysql"); module.exports = (on, config) => { - mysql.configurePlugin(on); -} + mysql.configurePlugin(on); +}; -- 2.47.0