From 46d49743b9ec6efd2e32e6642bfed35e4ce657c3 Mon Sep 17 00:00:00 2001 From: Owen Bickford Date: Sun, 24 Oct 2021 13:57:14 -0400 Subject: [PATCH] add `--no-error-on-unmatched-pattern` (#639) --- assets/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/package.json b/assets/package.json index d0928d8f1..902236c12 100644 --- a/assets/package.json +++ b/assets/package.json @@ -4,8 +4,8 @@ "scripts": { "deploy": "NODE_ENV=production webpack --mode production", "watch": "webpack --mode development --watch", - "format": "prettier --trailing-comma es5 --write {js,test,css}/**/*.{js,json,css,scss,md}", - "format-check": "prettier --trailing-comma es5 --check {js,test,css}/**/*.{js,json,css,scss,md}", + "format": "prettier --trailing-comma es5 --write {js,test,css}/**/*.{js,json,css,scss,md} --no-error-on-unmatched-pattern", + "format-check": "prettier --trailing-comma es5 --check {js,test,css}/**/*.{js,json,css,scss,md} --no-error-on-unmatched-pattern", "test": "jest", "test:watch": "jest --watch" },