Sha256: 340766056413a00f945450d54b73ca1bd49c7960eb7c2204fec9bb69b44a461e

Contents?: true

Size: 767 Bytes

Versions: 45

Compression:

Stored size: 767 Bytes

Contents

'use strict';

var helpers = require('../helpers');

module.exports = {
  'name': 'max-line-length',
  'defaults': {
    length: 80
  },
  'detect': function (ast, parser) {
    var result = [];

    ast.traverseByType('space', function (space) {
      var lineLength = 0;
      if (helpers.hasEOL(space.content)) {
        lineLength = space.start.column - 1;
      }

      if (lineLength > parser.options.length) {
        result = helpers.addUnique(result, {
          'ruleId': parser.rule.name,
          'severity': parser.severity,
          'line': space.start.line,
          'column': 0,
          'message': 'line ' + space.start.line + ' exceeds the maximum line length of ' + parser.options.length
        });
      }
    });

    return result;
  }
};

Version data entries

45 entries across 45 versions & 2 rubygems

Version Path
govuk_publishing_components-16.19.0 node_modules/sass-lint/lib/rules/max-line-length.js
govuk_publishing_components-16.18.0 node_modules/sass-lint/lib/rules/max-line-length.js
govuk_publishing_components-16.17.0 node_modules/sass-lint/lib/rules/max-line-length.js
guard-sass-lint-0.1.2 node_modules/sass-lint/lib/rules/max-line-length.js
guard-sass-lint-0.1.1 node_modules/sass-lint/lib/rules/max-line-length.js