From 9a514b72d08da400d9d59c8f37672e00a881c174 Mon Sep 17 00:00:00 2001 From: Gajus Kuizinas Date: Fri, 8 Jul 2022 18:23:59 -0500 Subject: [PATCH] style: apply auto fixes --- .eslintrc.js | 4 +++- src/factories/createLogFormatter.ts | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 6b7cd52..0b44403 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -12,7 +12,9 @@ module.exports = { }, }, { - extends: ['canonical'], + extends: [ + 'canonical', + ], files: '*.js', }, ], diff --git a/src/factories/createLogFormatter.ts b/src/factories/createLogFormatter.ts index 9cfbe0d..c34976d 100644 --- a/src/factories/createLogFormatter.ts +++ b/src/factories/createLogFormatter.ts @@ -15,7 +15,9 @@ import { } from '../utilities'; export const createLogFormatter = (configuration: LogFormatterConfigurationType) => { - const {chalk} = configuration; + const { + chalk, + } = configuration; const logLevelColorMap = { debug: chalk.gray,