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