Skip to content

Commit e5b8aeb

Browse files
committed
chore: fix lint
1 parent 4862f76 commit e5b8aeb

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -314,15 +314,14 @@ module.exports = {
314314
// Type of processing, can be `src` or `scrset`
315315
type: "src",
316316
// Allow to filter some attributes (optional)
317-
filter: (tag, attribute, attributes, resourcePath) =>
317+
filter: (tag, attribute, attributes, resourcePath) =>
318318
// The `tag` argument contains a name of the HTML tag.
319319
// The `attribute` argument contains a name of the HTML attribute.
320320
// The `attributes` argument contains all attributes of the tag.
321321
// The `resourcePath` argument contains a path to the loaded HTML file.
322322

323323
// choose all HTML tags except img tag
324-
tag.toLowerCase() !== "img"
325-
,
324+
tag.toLowerCase() !== "img",
326325
},
327326
],
328327
},

test/lock-files/url/lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
"contentType": "image/png"
99
},
1010
"version": 1
11-
}
11+
}

0 commit comments

Comments
 (0)