Sha256: b4f9ab652f897acfeb71c6d0f64af206080ad9500fd74c51ce067428938c377f
Contents?: true
Size: 858 Bytes
Versions: 43
Compression:
Stored size: 858 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 block-scoped variable declarations.", category: "ES2015", recommended: false, url: "http://mysticatea.github.io/eslint-plugin-es/rules/no-block-scoped-variables.html", }, fixable: null, schema: [], messages: { forbidden: "ES2015 block-scoped variables are forbidden.", }, }, create(context) { return { "VariableDeclaration[kind='const'], VariableDeclaration[kind='let']"( node ) { context.report({ node, messageId: "forbidden" }) }, } }, }
Version data entries
43 entries across 43 versions & 1 rubygems