Skip to content

Commit 34d5e4a

Browse files
committed
fix: correct formatting in index.ts for consistency
1 parent 26b12cb commit 34d5e4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ interface CoffeeScriptError extends Error {
2626

2727
const omit = <T extends object, K extends keyof T>(
2828
obj: T,
29-
keys: K[]
29+
keys: K[],
3030
): Omit<T, K> =>
3131
(Object.keys(obj) as K[])
3232
.filter((key) => !keys.includes(key))
3333
.reduce(
3434
(res, key) => Object.assign(res, { [key]: obj[key] }),
35-
{} as Omit<T, K>
35+
{} as Omit<T, K>,
3636
);
3737

3838
const convertMessage = (e: CoffeeScriptError): PartialMessage => {
@@ -68,7 +68,7 @@ const coffeeScriptPlugin = (options: Options = {}): Plugin => ({
6868
errors: [convertMessage(e as CoffeeScriptError)],
6969
};
7070
}
71-
}
71+
},
7272
);
7373
},
7474
});

0 commit comments

Comments
 (0)