Skip to content

Commit

Permalink
fix: add eslint ignore to address gh style warning
Browse files Browse the repository at this point in the history
  • Loading branch information
alharris-at committed Nov 11, 2021
1 parent f7d419a commit 8ee7c15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/studio-ui-codegen/lib/errors/error-transformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const transformCodegenError = (error: any | unknown): InternalError | Inv
export const handleCodegenErrors = (target: Object, propertyKey: string, descriptor: PropertyDescriptor) => {
const originalMethod = descriptor.value;

// eslint-disable-next-line no-param-reassign
// eslint-disable-next-line no-param-reassign, func-names
descriptor.value = function (...args: any[]) {
try {
return originalMethod.apply(this, args);
Expand Down

0 comments on commit 8ee7c15

Please sign in to comment.