Skip to content

Commit

Permalink
fixes linter issues
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Kroeger <benjamin.kroeger@gmail.com>
  • Loading branch information
benkroeger committed Feb 17, 2022
1 parent 9bd6e4b commit a346865
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/factories/createFieldNameTransformationInterceptor.ts
Expand Up @@ -40,7 +40,9 @@ export const createFieldNameTransformationInterceptor = (configuration: Configur
}
}

const {formattedFields} = context.sandbox;
const {
formattedFields,
} = context.sandbox;

const transformedRow = {};

Expand Down
Expand Up @@ -9,7 +9,9 @@ test('transforms field names to camelcase', (t) => {
format: 'CAMEL_CASE',
});

const {transformRow} = interceptor;
const {
transformRow,
} = interceptor;

if (!transformRow) {
throw new Error('Unexpected state.');
Expand Down

0 comments on commit a346865

Please sign in to comment.