From 43ec275bf7a097776beec2ca11f217b222e24858 Mon Sep 17 00:00:00 2001 From: bn-l Date: Thu, 4 Apr 2024 04:53:25 +1100 Subject: [PATCH] eslint fix --- .eslintrc.json | 1 - package.json | 2 +- source/index.mts | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 2ed1cc0..c63912a 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -17,7 +17,6 @@ "project": true }, "ignorePatterns": [ - "**", "!source/**" ], "plugins": [ diff --git a/package.json b/package.json index 1e3361a..30256d2 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "test:single": "vitest --bail=1", "test:online": "vitest online --bail=1", "test:all": "vitest --run --coverage", - "lint": "npx eslint source --ext .mts", + "lint": "npx eslint --ext .mts", "build": "tsc --build --incremental", "coverageBadge": "tsx scripts/coverage-badge.ts", "build:clean": "rimraf ./dist && tsc --build", diff --git a/source/index.mts b/source/index.mts index af666bc..10a162c 100644 --- a/source/index.mts +++ b/source/index.mts @@ -2,6 +2,7 @@ import { executeParsedGroups, groupByOwner, parseOwnerGroups } from "./main.mjs"; import { c, getCli } from "./cli.mjs"; + import type { OwnerGroup, ParsedGroup } from "./main.mjs"; import ora, { Ora } from "ora";