Skip to content

Commit

Permalink
style: apply auto fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Jul 8, 2022
1 parent 87e0990 commit 9a514b7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ module.exports = {
},
},
{
extends: ['canonical'],
extends: [
'canonical',
],
files: '*.js',
},
],
Expand Down
4 changes: 3 additions & 1 deletion src/factories/createLogFormatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ import {
} from '../utilities';

export const createLogFormatter = (configuration: LogFormatterConfigurationType) => {
const {chalk} = configuration;
const {
chalk,
} = configuration;

const logLevelColorMap = {
debug: chalk.gray,
Expand Down

0 comments on commit 9a514b7

Please sign in to comment.