Skip to content

Commit 20fbd27

Browse files
chore: code formattings
1 parent 441d292 commit 20fbd27

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

__tests__/logger.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
spyOnStdout,
44
stdoutCalledWith,
55
} from '@technote-space/github-action-test-helper';
6-
import {Logger} from '../src';
6+
import { Logger } from '../src';
77

88
describe('Logger', () => {
99
beforeEach(() => {

src/logger.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* eslint-disable @typescript-eslint/no-explicit-any */
2-
import {sprintf} from 'sprintf-js';
3-
import {info, debug, error, warning, startGroup, endGroup} from '@actions/core';
4-
import {split} from './utils';
2+
import { sprintf } from 'sprintf-js';
3+
import { info, debug, error, warning, startGroup, endGroup } from '@actions/core';
4+
import { split } from './utils';
55

6-
const COLOR_MAP = {
6+
const COLOR_MAP = {
77
'black': 0,
88
'red': 1,
99
'green': 2,

0 commit comments

Comments
 (0)