Skip to content

Commit

Permalink
chore: lint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sverweij committed May 20, 2024
1 parent 8f0e7f0 commit 0319b8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
3 changes: 0 additions & 3 deletions src/main/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
// workaround to nodenext shenanigans with the TypeScript compiler
// see https://github.com/sverweij/dependency-cruiser/issues/754
// eslint-disable-next-line node/no-unpublished-import
export type * from "../../types/dependency-cruiser.mjs";
7 changes: 3 additions & 4 deletions src/validate/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable node/no-unpublished-import */
import type {
IDependency,
IFolder,
Expand Down Expand Up @@ -37,7 +36,7 @@ export interface IValidationResult {
*/
export function module(
pRuleSet: IFlattenedRuleSet,
pModule: IModule
pModule: IModule,
): IValidationResult;

/**
Expand All @@ -47,7 +46,7 @@ export function module(
export function dependency(
pRuleSet: IFlattenedRuleSet,
pFrom: IModule,
pTo: IDependency
pTo: IDependency,
): IValidationResult;

/**
Expand All @@ -57,5 +56,5 @@ export function dependency(
export function folder(
pRuleSet: IFlattenedRuleSet,
pFromFolder: IFolder,
pToFolder: IFolderDependency
pToFolder: IFolderDependency,
): IValidationResult;

0 comments on commit 0319b8d

Please sign in to comment.