Skip to content

Commit

Permalink
chore: fix lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Jakob Steiner <[email protected]>
  • Loading branch information
kosmoz committed May 22, 2024
1 parent c02da87 commit f74d22c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"*.ts"
],
"rules": {
"node/shebang": "off",
"n/shebang": "off",
"n/no-missing-import":"off"
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/paths.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type VersionsYaml = {readonly versionsYaml: StringSupplier};
type ManifestYaml = {readonly packageYaml: StringSupplier};
export type PackageVersionPaths = DirName & ManifestYaml;
type WithPackageVersion = {readonly version: (version: string) => PackageVersionPaths};
export type PackagePaths = DirName & VersionsYaml & ManifestYaml & WithPackageVersion;
export type PackagePaths = DirName & ManifestYaml & VersionsYaml & WithPackageVersion;
type WithPackage = {readonly package: (name: string) => PackagePaths};
export type Paths = DirName & IndexYaml & WithPackage;

Expand Down

0 comments on commit f74d22c

Please sign in to comment.