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";