Skip to content

Commit 023bee0

Browse files
committed
fix: Adapt jsonlint error consumption for the newest jsonlint version
1 parent e00ab75 commit 023bee0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/reporters/jshint-style.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,29 @@ function padLeft(number, length) {
1111

1212
module.exports = function reportLikeJshint(file, error) {
1313
let line
14-
let exzerpt
14+
let excerpt
1515
let pointer
1616
let reason
1717
if (error.location) {
1818
;({ line } = error.location.start)
19-
;({ exzerpt, pointer, reason } = error)
19+
;({ excerpt, pointer, reason } = error)
2020
} else {
2121
return error.message
2222
}
2323
const extraLength = pointer.length - 10
2424
if (extraLength > 0) {
2525
pointer = ` ${pointer.substr(extraLength)}`
26-
exzerpt = `...${exzerpt.substr(extraLength)}`
26+
excerpt = `...${excerpt.substr(extraLength)}`
2727
}
28-
if (exzerpt.length > 20) {
29-
exzerpt = `${exzerpt.substr(0, 20)}...`
28+
if (excerpt.length > 20) {
29+
excerpt = `${excerpt.substr(0, 20)}...`
3030
}
3131
pointer = pointer.replace(/-/g, ' ')
3232
const prefix = `${padLeft(line, 6)} | `
3333
const indent = ' '.repeat(prefix.length)
3434
return (
3535
colors.magenta(prefix) +
36-
colors.black(exzerpt) +
36+
colors.black(excerpt) +
3737
'\n' +
3838
colors.red(`${indent}${pointer} ${reason}`)
3939
)

0 commit comments

Comments
 (0)