You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.5 KiB
61 lines
1.5 KiB
1 year ago
|
/**
|
||
|
* @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,
|
||
|
messages: {
|
||
|
hasArg: 'Use type-based declaration instead of runtime declaration.',
|
||
|
hasTypeArg: 'Use runtime declaration instead of type-based declaration.'
|
||
|
},
|
||
|
schema: [
|
||
|
{
|
||
|
enum: ['type-based', 'runtime']
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
/** @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':
|
||
|
if (node.typeParameters && node.typeParameters.params.length > 0) {
|
||
|
context.report({
|
||
|
node,
|
||
|
messageId: 'hasTypeArg'
|
||
|
})
|
||
|
}
|
||
|
break
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|