From 864dd28b2611c2ebfe2cc550a7eb70c821c2af00 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 31 Aug 2023 13:25:30 -0500 Subject: [PATCH] justfile: improve lint/format commands --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 0db18fd..386bdee 100644 --- a/justfile +++ b/justfile @@ -21,8 +21,8 @@ publish: build emit-types format: eslint --ext .ts --fix . - prettier --plugin-search-dir . --write . + prettier --write . lint: eslint --ext .ts . - prettier --plugin-search-dir . --check . \ No newline at end of file + prettier --check . \ No newline at end of file