Sha256: 52187e76339f2d09f37a7f3c610ce0157340c3180a9709b7c9dcf361cd92dd56
Contents?: true
Size: 1.01 KB
Versions: 43
Compression:
Stored size: 1.01 KB
Contents
/** * @fileoverview Warn when using template string syntax in regular strings * @author Jeroen Engels */ "use strict"; //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ module.exports = { meta: { docs: { description: "disallow template literal placeholder syntax in regular strings", category: "Possible Errors", recommended: false, url: "https://eslint.org/docs/rules/no-template-curly-in-string" }, schema: [] }, create(context) { const regex = /\$\{[^}]+\}/; return { Literal(node) { if (typeof node.value === "string" && regex.test(node.value)) { context.report({ node, message: "Unexpected template string expression." }); } } }; } };
Version data entries
43 entries across 43 versions & 1 rubygems