From 579c56eb89823c989901f404c8d9a945cbc64c25 Mon Sep 17 00:00:00 2001 From: Adam Rusted Date: Thu, 28 Mar 2024 12:50:16 +0000 Subject: [PATCH] Switch singlequotes to doublequotes. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e8cade0f1185..c15e9cefca8d 100644 --- a/package.json +++ b/package.json @@ -109,10 +109,10 @@ "scripts": { "build": "./scripts/build/package.js", "clean": "./scripts/build/clean.js", - "format": "prettier --cache --write --ignore-unknown '**/*.!(js|jsx|mjs|cjs|ts|tsx|mts|cts|svg)' && xo --fix", + "format": "prettier --cache --write --ignore-unknown \"**/*.!(js|jsx|mjs|cjs|ts|tsx|mts|cts|svg)\" && xo --fix", "lint": "npm run ourlint && npm run prettierlint && npm run jslint && npm run jsonlint && npm run svglint && npm run wslint", "ourlint": "./scripts/lint/ourlint.js", - "prettierlint": "prettier --cache --check --ignore-unknown '**/*.!(js|jsx|mjs|cjs|ts|tsx|mts|cts|svg)'", + "prettierlint": "prettier --cache --check --ignore-unknown \"**/*.!(js|jsx|mjs|cjs|ts|tsx|mts|cts|svg)\"", "jslint": "xo", "jsonlint": "./scripts/lint/jsonlint.js", "svglint": "svglint --ci $npm_config_icons --config svglint.config.mjs",