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
Fetching contributors…
![]()
Cannot retrieve contributors at this time
| /** | |
| * Disallow use of certain node types (from Esprima/ESTree). | |
| * | |
| * Esprima node types | |
| * - [list](https://github.com/jquery/esprima/blob/758196a1c5dd20c3ead6300283a1112428bc7045/esprima.js#L108-L169) | |
| * | |
| * Type: `Array` | |
| * | |
| * Value: Array of parser node types to be disallowed. | |
| * | |
| * #### Example | |
| * | |
| * ```js | |
| * "disallowNodeTypes": ['LabeledStatement'] | |
| * ``` | |
| * | |
| * ##### Valid | |
| * | |
| * ```js | |
| * // use of an allowed node type | |
| * var a = 1; | |
| * // shorthand form of arrow function that returns an object | |
| * var f = () => ({ a: 1 }); | |
| * ``` | |
| * | |
| * ##### Invalid | |
| * | |
| * ```js | |
| * // label statement with loop | |
| * loop1: | |
| * for (i = 0; i < 10; i++) { | |
| * if (i === 3) { | |
| * break loop1; | |
| * } | |
| * } | |
| * // accidental label statement with arrow function | |
| * var f = () => { a: 1 }; | |
| * // label statement | |
| * { a: 1 } | |
| * ``` | |
| */ | |
| var assert = require('assert'); | |
| module.exports = function() {}; | |
| module.exports.prototype = { | |
| configure: function(nodeTypes) { | |
| assert( | |
| Array.isArray(nodeTypes), | |
| 'disallowNodeTypes option requires an array' | |
| ); | |
| this._nodeTypes = nodeTypes; | |
| }, | |
| getOptionName: function() { | |
| return 'disallowNodeTypes'; | |
| }, | |
| check: function(file, errors) { | |
| var disallowedNodeTypes = this._nodeTypes; | |
| file.iterateNodesByType(disallowedNodeTypes, function(node) { | |
| errors.add('Illegal use of disallowed node type: ' + node.type, node.loc.start); | |
| }); | |
| } | |
| }; |