Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Mar 8, 2024
1 parent 31b69fa commit edf620e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/rules/expect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Then re-run.`,
create(context) {
const pkg = findTypesPackage(context.filename);
if (!pkg) {
return {}
return {};
}

const tsconfigPath = findUp(context.filename, (dir) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export interface PackageJSON {
owners: string[];
dependencies?: Record<string, string | undefined>;
devDependencies?: Record<string, string | undefined>;
tsconfigs?: string[]
tsconfigs?: string[];
}

// TODO(jakebailey): pull this helper out to util package?
Expand Down

0 comments on commit edf620e

Please sign in to comment.