We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74e9d06 commit e6bc9d0Copy full SHA for e6bc9d0
lib/rules/no-multiple-template-root.js
@@ -13,12 +13,12 @@ const utils = require('../utils')
13
* @returns {(HTMLComment | HTMLBogusComment | Comment)[]}
14
*/
15
function getReportComments(comments, elementRanges) {
16
- return comments.filter(
17
- (comment) =>
18
- !elementRanges.some(
19
- (range) => range[0] <= comment.range[0] && comment.range[1] <= range[1]
20
- )
21
+ return comments.filter(
+ (comment) =>
+ !elementRanges.some(
+ (range) => range[0] <= comment.range[0] && comment.range[1] <= range[1]
+ )
22
}
23
24
module.exports = {
0 commit comments