Add components
This commit is contained in:
111
slider/node_modules/eslint-plugin-vue/lib/rules/max-lines-per-block.js
generated
vendored
Normal file
111
slider/node_modules/eslint-plugin-vue/lib/rules/max-lines-per-block.js
generated
vendored
Normal file
@@ -0,0 +1,111 @@
|
||||
/**
|
||||
* @author lsdsjy
|
||||
* @fileoverview Rule for checking the maximum number of lines in Vue SFC blocks.
|
||||
*/
|
||||
'use strict'
|
||||
|
||||
const { SourceCode } = require('eslint')
|
||||
const utils = require('../utils')
|
||||
|
||||
/**
|
||||
* @param {string} text
|
||||
*/
|
||||
function isEmptyLine(text) {
|
||||
return !text.trim()
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
type: 'problem',
|
||||
docs: {
|
||||
description: 'enforce maximum number of lines in Vue SFC blocks',
|
||||
categories: undefined,
|
||||
url: 'https://eslint.vuejs.org/rules/max-lines-per-block.html'
|
||||
},
|
||||
fixable: null,
|
||||
schema: [
|
||||
{
|
||||
type: 'object',
|
||||
properties: {
|
||||
style: {
|
||||
type: 'integer',
|
||||
minimum: 1
|
||||
},
|
||||
template: {
|
||||
type: 'integer',
|
||||
minimum: 1
|
||||
},
|
||||
script: {
|
||||
type: 'integer',
|
||||
minimum: 1
|
||||
},
|
||||
skipBlankLines: {
|
||||
type: 'boolean',
|
||||
minimum: 0
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
}
|
||||
],
|
||||
messages: {
|
||||
tooManyLines:
|
||||
'Block has too many lines ({{lineCount}}). Maximum allowed is {{limit}}.'
|
||||
}
|
||||
},
|
||||
/** @param {RuleContext} context */
|
||||
create(context) {
|
||||
const option = context.options[0] || {}
|
||||
/**
|
||||
* @type {Record<string, number>}
|
||||
*/
|
||||
const limits = {
|
||||
template: option.template,
|
||||
script: option.script,
|
||||
style: option.style
|
||||
}
|
||||
|
||||
const code = context.getSourceCode()
|
||||
const sourceCode = context.getSourceCode()
|
||||
const documentFragment =
|
||||
sourceCode.parserServices.getDocumentFragment &&
|
||||
sourceCode.parserServices.getDocumentFragment()
|
||||
|
||||
function getTopLevelHTMLElements() {
|
||||
if (documentFragment) {
|
||||
return documentFragment.children.filter(utils.isVElement)
|
||||
}
|
||||
return []
|
||||
}
|
||||
|
||||
return {
|
||||
/** @param {Program} node */
|
||||
Program(node) {
|
||||
if (utils.hasInvalidEOF(node)) {
|
||||
return
|
||||
}
|
||||
for (const block of getTopLevelHTMLElements()) {
|
||||
if (limits[block.name]) {
|
||||
// We suppose the start tag and end tag occupy one single line respectively
|
||||
let lineCount = block.loc.end.line - block.loc.start.line - 1
|
||||
|
||||
if (option.skipBlankLines) {
|
||||
const lines = SourceCode.splitLines(code.getText(block))
|
||||
lineCount -= lines.filter(isEmptyLine).length
|
||||
}
|
||||
|
||||
if (lineCount > limits[block.name]) {
|
||||
context.report({
|
||||
node: block,
|
||||
messageId: 'tooManyLines',
|
||||
data: {
|
||||
limit: limits[block.name],
|
||||
lineCount
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user