Skip to content

Commit 82798e3

Browse files
authored
ci: fix build
1 parent ef067ef commit 82798e3

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/eslint/index.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
import type { ConfigWithExtends } from "@eslint/config-helpers";
1+
import type { Config, ConfigWithExtends } from "@eslint/config-helpers";
22
import { defineConfig } from "eslint/config";
33
import { findUpSync } from "find-up-simple";
44
import { isPackageListed } from "local-pkg";
55
import path from "node:path";
66

77
import { basePreset, defaultOverridesPreset } from "./presets/base";
88

9-
export const solvro = async (...overrides: ConfigWithExtends[]) => {
9+
export const solvro = async (
10+
...overrides: ConfigWithExtends[]
11+
): Promise<Config[]> => {
1012
const isAdonis = await isPackageListed("@adonisjs/core");
1113
const isReact = await isPackageListed("react");
1214
const isNestJs = await isPackageListed("@nestjs/core");

0 commit comments

Comments
 (0)