From 350951b88e03d9827173139ad0be9c2b68b0ae62 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 31 Aug 2023 13:21:10 -0500 Subject: [PATCH] Add eslint to `just lint` --- .github/workflows/test.yml | 2 +- justfile | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8dc95f5..5e8d8ce 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,4 +24,4 @@ jobs: with: node-version: 18 - run: just install-dependencies - - run: just format-check \ No newline at end of file + - run: just lint \ No newline at end of file diff --git a/justfile b/justfile index c3907ff..3490084 100644 --- a/justfile +++ b/justfile @@ -22,5 +22,6 @@ publish: build emit-types format: prettier --plugin-search-dir . --write . -format-check: +lint: + eslint --ext .ts . prettier --plugin-search-dir . --check . \ No newline at end of file