|
| 1 | +/** |
| 2 | + * @fileoverview Inherit pug-lint to validate pug |
| 3 | + * @author Eugene Zhlobo |
| 4 | + */ |
| 5 | + |
| 6 | +const Linter = require('pug-lint') |
| 7 | +const common = require('common-prefix') |
| 8 | + |
| 9 | +const { isReactPugReference, buildLocation, docsUrl } = require('../util/eslint') |
| 10 | +const getTemplate = require('../util/getTemplate') |
| 11 | + |
| 12 | +//------------------------------------------------------------------------------ |
| 13 | +// Rule Definition |
| 14 | +//------------------------------------------------------------------------------ |
| 15 | + |
| 16 | +const buildMessage = actual => ( |
| 17 | + `Invalid indentation, found "${actual}" spaces` |
| 18 | +) |
| 19 | + |
| 20 | +module.exports = { |
| 21 | + meta: { |
| 22 | + docs: { |
| 23 | + description: 'Inherit pug-lint to validate pug (experimental)', |
| 24 | + category: 'Stylistic Issues', |
| 25 | + recommended: false, |
| 26 | + url: docsUrl('pug-lint'), |
| 27 | + }, |
| 28 | + schema: [ |
| 29 | + { |
| 30 | + type: 'object', |
| 31 | + }, |
| 32 | + ], |
| 33 | + }, |
| 34 | + |
| 35 | + create: function (context) { |
| 36 | + return { |
| 37 | + TaggedTemplateExpression: function (node) { |
| 38 | + if (isReactPugReference(node)) { |
| 39 | + const template = getTemplate(node) |
| 40 | + const lines = template.split('\n') |
| 41 | + |
| 42 | + const linter = new Linter() |
| 43 | + |
| 44 | + linter.configure(context.options[0]) |
| 45 | + |
| 46 | + const firstTokenInLine = context |
| 47 | + .getSourceCode() |
| 48 | + .getTokensBefore(node, { |
| 49 | + filter: token => token.loc.end.line === node.loc.start.line, |
| 50 | + })[0] |
| 51 | + |
| 52 | + const minimalIndent = firstTokenInLine |
| 53 | + ? firstTokenInLine.loc.start.column |
| 54 | + : node.loc.start.column |
| 55 | + |
| 56 | + const desiredIndent = lines.length > 1 |
| 57 | + ? minimalIndent + 2 |
| 58 | + : 0 |
| 59 | + |
| 60 | + const amountOfUselessSpaces = common(lines.filter(item => item.trim() !== '')) |
| 61 | + .replace(/^(\s*).*/, '$1') |
| 62 | + .length |
| 63 | + |
| 64 | + if (amountOfUselessSpaces > 0 && amountOfUselessSpaces < desiredIndent) { |
| 65 | + context.report({ |
| 66 | + node, |
| 67 | + message: buildMessage(amountOfUselessSpaces), |
| 68 | + loc: buildLocation( |
| 69 | + [(node.loc.start.line + 1), 0], |
| 70 | + [(node.loc.start.line + 1), amountOfUselessSpaces], |
| 71 | + ), |
| 72 | + }) |
| 73 | + |
| 74 | + return null |
| 75 | + } |
| 76 | + |
| 77 | + // We need to pass the template without not valuable spaces in the |
| 78 | + // beginning of each line |
| 79 | + const preparedTemplate = lines |
| 80 | + .map(item => item.slice(desiredIndent)) |
| 81 | + .join('\n') |
| 82 | + |
| 83 | + const result = linter.checkString(preparedTemplate, 'testfile') |
| 84 | + |
| 85 | + if (result.length) { |
| 86 | + result.forEach((error) => { |
| 87 | + const delta = error.line === 1 |
| 88 | + // When template starts plus backtick |
| 89 | + ? node.quasi.quasis[0].loc.start.column + 1 |
| 90 | + : desiredIndent - 1 |
| 91 | + |
| 92 | + let columnStart = error.column + delta |
| 93 | + let columnEnd = error.column + delta |
| 94 | + let message = error.msg |
| 95 | + |
| 96 | + if (error.msg === 'Invalid indentation') { |
| 97 | + columnStart = 0 |
| 98 | + columnEnd = preparedTemplate.split('\n')[error.line - 1].replace(/^(\s*).*/, '$1').length + desiredIndent |
| 99 | + message = buildMessage(columnEnd) |
| 100 | + } |
| 101 | + |
| 102 | + context.report({ |
| 103 | + node, |
| 104 | + message, |
| 105 | + loc: buildLocation( |
| 106 | + [(node.loc.start.line + error.line) - 1, columnStart], |
| 107 | + [(node.loc.start.line + error.line) - 1, columnEnd], |
| 108 | + ), |
| 109 | + }) |
| 110 | + }) |
| 111 | + } |
| 112 | + } |
| 113 | + |
| 114 | + return null |
| 115 | + }, |
| 116 | + } |
| 117 | + }, |
| 118 | +} |
0 commit comments