From 07e533402e234d31b7cf9741bf2d08c32eda88c0 Mon Sep 17 00:00:00 2001 From: Caleb Jasik Date: Mon, 19 Jul 2021 23:06:41 -0500 Subject: [PATCH] Update `format` script to format all files not ignored via `.prettierignore` that `prettier` has a valid parser for. (#768) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7e5ec04687..e5858f75de 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "build:core": "lerna run build --scope astro --scope @astrojs/parser --scope @astrojs/markdown-support", "build:vscode": "lerna run build --scope astro-languageserver --scope astro-vscode --scope @astrojs/parser", "dev:vscode": "lerna run dev --scope astro-languageserver --scope astro-vscode --scope @astrojs/parser --parallel --stream", - "format": "prettier -w \"**/*.{js,jsx,ts,tsx,md,json}\"", + "format": "prettier -w .", "lint": "eslint \"packages/**/*.ts\"", "test": "yarn workspace astro run test", "test:templates": "lerna run test --scope create-astro --stream"