Add components
This commit is contained in:
64
slider/node_modules/eslint-plugin-vue/lib/rules/define-props-declaration.js
generated
vendored
Normal file
64
slider/node_modules/eslint-plugin-vue/lib/rules/define-props-declaration.js
generated
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
/**
|
||||
* @author Amorites
|
||||
* See LICENSE file in root directory for full license.
|
||||
*/
|
||||
'use strict'
|
||||
|
||||
const utils = require('../utils')
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
type: 'suggestion',
|
||||
docs: {
|
||||
description: 'enforce declaration style of `defineProps`',
|
||||
categories: undefined,
|
||||
url: 'https://eslint.vuejs.org/rules/define-props-declaration.html'
|
||||
},
|
||||
fixable: null,
|
||||
schema: [
|
||||
{
|
||||
enum: ['type-based', 'runtime']
|
||||
}
|
||||
],
|
||||
messages: {
|
||||
hasArg: 'Use type-based declaration instead of runtime declaration.',
|
||||
hasTypeArg: 'Use runtime declaration instead of type-based declaration.'
|
||||
}
|
||||
},
|
||||
/** @param {RuleContext} context */
|
||||
create(context) {
|
||||
const scriptSetup = utils.getScriptSetupElement(context)
|
||||
if (!scriptSetup || !utils.hasAttribute(scriptSetup, 'lang', 'ts')) {
|
||||
return {}
|
||||
}
|
||||
|
||||
const defineType = context.options[0] || 'type-based'
|
||||
return utils.defineScriptSetupVisitor(context, {
|
||||
onDefinePropsEnter(node) {
|
||||
switch (defineType) {
|
||||
case 'type-based': {
|
||||
if (node.arguments.length > 0) {
|
||||
context.report({
|
||||
node,
|
||||
messageId: 'hasArg'
|
||||
})
|
||||
}
|
||||
break
|
||||
}
|
||||
|
||||
case 'runtime': {
|
||||
const typeArguments =
|
||||
'typeArguments' in node ? node.typeArguments : node.typeParameters
|
||||
if (typeArguments && typeArguments.params.length > 0) {
|
||||
context.report({
|
||||
node,
|
||||
messageId: 'hasTypeArg'
|
||||
})
|
||||
}
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user