Sha256: c6bf0202127dde311edc1941fbe8fe523c858309a432b1166225420264e03b1b
Contents?: true
Size: 798 Bytes
Versions: 43
Compression:
Stored size: 798 Bytes
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 `new.target` meta property.", category: "ES2015", recommended: false, url: "http://mysticatea.github.io/eslint-plugin-es/rules/no-new-target.html", }, fixable: null, schema: [], messages: { forbidden: "ES2015 'new.target' meta property is forbidden.", }, }, create(context) { return { "MetaProperty[meta.name='new'][property.name='target']"(node) { context.report({ node, messageId: "forbidden" }) }, } }, }
Version data entries
43 entries across 43 versions & 1 rubygems