Skip to content

Commit f45af95

Browse files
author
Guillaume Chau
committed
chore: lint files
1 parent 8fd8082 commit f45af95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/@vue/cli-ui/apollo-server/util/parse-diff.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ module.exports = function (input) {
8484

8585
const del = function (line) {
8686
if (!current) return
87-
current.changes.push({type: 'del', del: true, ln: lnDel++, content: line})
87+
current.changes.push({ type: 'del', del: true, ln: lnDel++, content: line })
8888
file.deletions++
8989
}
9090

9191
const add = function (line) {
9292
if (!current) return
93-
current.changes.push({type: 'add', add: true, ln: lnAdd++, content: line})
93+
current.changes.push({ type: 'add', add: true, ln: lnAdd++, content: line })
9494
file.additions++
9595
}
9696

0 commit comments

Comments
 (0)