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 multiple indentation characters (tabs or spaces) between identifiers, keywords, and any other token | |
| * | |
| * Type: `Boolean` or `Object` | |
| * | |
| * Values: `true` or `{"allowEOLComments": true}` to allow on-line comments to be ignored | |
| * | |
| * #### Examples | |
| * | |
| * ```js | |
| * "disallowMultipleSpaces": true | |
| * // or | |
| * "disallowMultipleSpaces": {"allowEOLComments": true} | |
| * ``` | |
| * | |
| * ##### Valid | |
| * ```js | |
| * var x = "hello"; | |
| * function y() {} | |
| * ``` | |
| * | |
| * ##### Valid for `{"allowEOLComments": true}` | |
| * | |
| * ```js | |
| * var x = "hello" // world; | |
| * function y() {} | |
| * ``` | |
| * | |
| * ##### Invalid | |
| * ```js | |
| * var x = "hello"; | |
| * function y() {} | |
| * ``` | |
| */ | |
| var assert = require('assert'); | |
| module.exports = function() {}; | |
| module.exports.prototype = { | |
| configure: function(options) { | |
| assert( | |
| options === true || | |
| typeof options === 'object' && | |
| options.allowEOLComments === true, | |
| this.getOptionName() + ' option requires true value ' + | |
| 'or an object with `allowEOLComments` property' | |
| ); | |
| this.allowEOLComments = options.allowEOLComments; | |
| }, | |
| getOptionName: function() { | |
| return 'disallowMultipleSpaces'; | |
| }, | |
| check: function(file, errors) { | |
| // Iterate over all tokens (including comments) | |
| var _this = this; | |
| file.getTokens().forEach(function(token, index, tokens) { | |
| // If there are no trailing tokens, exit early | |
| var nextToken = tokens[index + 1]; | |
| if (!nextToken) { | |
| return; | |
| } | |
| // If we are allowing EOL comments and the next token is an EOL comment skip it | |
| // We don't need to check the current token since EOL comments must be on separate lines from the next one | |
| if (_this.allowEOLComments && nextToken.type === 'Line') { | |
| return; | |
| } | |
| // Verify we have at most 1 space between this token and the next (won't fail for different lines) | |
| errors.assert.spacesBetween({ | |
| token: token, | |
| nextToken: nextToken, | |
| atMost: 1 | |
| }); | |
| }); | |
| } | |
| }; |