32 lines
883 B
JavaScript
32 lines
883 B
JavaScript
/**
|
|
* @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,
|
|
messages: {
|
|
forbidden: "ES2015 block-scoped variables are forbidden.",
|
|
},
|
|
schema: [],
|
|
type: "problem",
|
|
},
|
|
create(context) {
|
|
return {
|
|
"VariableDeclaration[kind='const'], VariableDeclaration[kind='let']"(
|
|
node
|
|
) {
|
|
context.report({ node, messageId: "forbidden" })
|
|
},
|
|
}
|
|
},
|
|
}
|