Sha256: a5886c8a529142b6c6e0666b424f89fa9a7432db8ca4af9f6cbee4fff407748c
Contents?: true
Size: 1.04 KB
Versions: 43
Compression:
Stored size: 1.04 KB
Contents
/** * @author Toru Nagashima <https://github.com/mysticatea> * See LICENSE file in root directory for full license. */ "use strict" module.exports = { meta: { docs: { description: "disallow template literals with invalid escape sequences.", category: "ES2018", recommended: false, url: "http://mysticatea.github.io/eslint-plugin-es/rules/no-malformed-template-literals.html", }, fixable: null, schema: [], messages: { forbidden: "ES2018 template literals with invalid escape sequences are forbidden.", }, }, create(context) { const reported = new Set() return { "TemplateElement[value.cooked=null]"(elementNode) { const node = elementNode.parent if (!reported.has(node)) { reported.add(node) context.report({ node, messageId: "forbidden" }) } }, } }, }
Version data entries
43 entries across 43 versions & 1 rubygems