Permalink
Jump to Line
Branch:
master
Switch branches/tags
dollar-ignores
feature/new-rule-require-new-lines-in-array
gh-pages
issues/1242
issues/1271-related
master
mdevils/cst
Nothing to show
Nothing to show
Users who have contributed to this file
| /** | |
| * Disallows unassigned functions to be named inline | |
| * | |
| * Type: `Boolean` | |
| * | |
| * Value: `true` | |
| * | |
| * #### Example | |
| * | |
| * ```js | |
| * "disallowNamedUnassignedFunctions": true | |
| * ``` | |
| * | |
| * ##### Valid | |
| * ```js | |
| * [].forEach(function () {}); | |
| * var x = function() {}; | |
| * function y() {} | |
| * ``` | |
| * | |
| * ##### Invalid | |
| * ```js | |
| * [].forEach(function x() {}); | |
| * ``` | |
| */ | |
| var assert = require('assert'); | |
| module.exports = function() {}; | |
| module.exports.prototype = { | |
| configure: function(options) { | |
| assert( | |
| options === true, | |
| this.getOptionName() + ' option requires true value' | |
| ); | |
| }, | |
| getOptionName: function() { | |
| return 'disallowNamedUnassignedFunctions'; | |
| }, | |
| check: function(file, errors) { | |
| file.iterateNodesByType('FunctionExpression', function(node) { | |
| // If the function has been named via left hand assignment, skip it | |
| // e.g. `var hello = function() {`, `foo.bar = function() {` | |
| if (node.parentNode.type.match(/VariableDeclarator|Property|AssignmentExpression/)) { | |
| return; | |
| } | |
| // If the function has not been named, skip it | |
| // e.g. `[].forEach(function() {` | |
| if (node.id === null) { | |
| return; | |
| } | |
| // Otherwise, complain that it is being named | |
| errors.add('Inline functions cannot be named', node.loc.start); | |
| }); | |
| } | |
| }; |