Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pimlie committed Oct 11, 2018
1 parent 30cd4f0 commit d976620
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/reporters/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ export default class BrowserReporter {
white: 'grey'
}

//
const symbols = {
const symbols = {
start: '\u25cf',
info: '\u2139',
success: '\u2713',
Expand Down Expand Up @@ -73,6 +72,8 @@ export default class BrowserReporter {

if (symbols[logObj.type]) {
args.unshift('%c' + symbols[logObj.type])

/* eslint-disable-next-line no-console */
console[type](args.join(' '), styleDefault, badgeStyle, styleDiscrete, styleDefault, styleAdditional)
} else {
/* eslint-disable-next-line no-console */
Expand Down

0 comments on commit d976620

Please sign in to comment.