Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
slaskis committed Oct 3, 2016
1 parent 6963714 commit 6426895
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/jade.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function convert (inputXml, options = {}) {
element.append(el)
}
})
} else if (typeof child == 'object') {
} else if (typeof child === 'object') {
const el = new Element(key)
build(el, child)
element.append(el)
Expand Down
2 changes: 1 addition & 1 deletion test/cashapelayer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import test from 'ava'
import {readFileSync, writeFileSync} from 'fs'
import {readFileSync} from 'fs'
import {resolve} from 'path'
import {convert, convertAll} from '../lib/cashapelayer'

Expand Down
2 changes: 1 addition & 1 deletion test/uibezierpath.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import test from 'ava'
import {readFileSync} from 'fs'
import {resolve} from 'path'
import {convert, convertAll} from '../lib//uibezierpath'
import {convert, convertAll} from '../lib/uibezierpath'

test('logo.appkit-bezier.swift', t => {
const original = readFileSync(resolve(__dirname, 'fixtures', 'logo.original.svg'), 'utf8')
Expand Down
2 changes: 1 addition & 1 deletion test/vector-drawable.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import test from 'ava'
import {readFileSync} from 'fs'
import {resolve} from 'path'
import {convert, convertAll} from '../lib//vector-drawable'
import {convert, convertAll} from '../lib/vector-drawable'

test('logo.2.xml', t => {
const original = readFileSync(resolve(__dirname, 'fixtures', 'logo.original.svg'), 'utf8')
Expand Down

0 comments on commit 6426895

Please sign in to comment.