Skip to content

Commit b3032c9

Browse files
committed
Fix vue/require-valid-default-prop
1 parent 8998eca commit b3032c9

File tree

2 files changed

+32
-3
lines changed

2 files changed

+32
-3
lines changed

lib/rules/require-valid-default-prop.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@ module.exports = {
9797

9898
const properties = props.value.properties.filter(p =>
9999
isPropertyIdentifier(p) &&
100-
p.value.type === 'ObjectExpression'
100+
utils.unwrapTypes(p.value).type === 'ObjectExpression'
101101
)
102102

103103
for (const prop of properties) {
104-
const type = getPropertyNode(prop.value, 'type')
104+
const type = getPropertyNode(utils.unwrapTypes(prop.value), 'type')
105105
if (!type) continue
106106

107107
const typeNames = new Set(getTypes(type.value)
@@ -111,7 +111,7 @@ module.exports = {
111111
// There is no native types detected
112112
if (typeNames.size === 0) continue
113113

114-
const def = getPropertyNode(prop.value, 'default')
114+
const def = getPropertyNode(utils.unwrapTypes(prop.value), 'default')
115115
if (!def) continue
116116

117117
const defType = getValueType(def.value)

tests/lib/rules/require-valid-default-prop.js

+29
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,21 @@ ruleTester.run('require-valid-default-prop', rule, {
100100
}
101101
})`,
102102
parserOptions
103+
},
104+
{
105+
filename: 'test.vue',
106+
code: `
107+
export default (Vue as VueConstructor<Vue>).extend({
108+
props: {
109+
foo: {
110+
type: [Object, Number],
111+
default: 10
112+
} as PropOptions<object>
113+
}
114+
});
115+
`,
116+
parserOptions: { ecmaVersion: 6, sourceType: 'module' },
117+
parser: 'typescript-eslint-parser'
103118
}
104119
],
105120

@@ -415,6 +430,20 @@ ruleTester.run('require-valid-default-prop', rule, {
415430
}`,
416431
parserOptions,
417432
errors: errorMessage('function or number')
433+
},
434+
{
435+
filename: 'test.vue',
436+
code: `export default (Vue as VueConstructor<Vue>).extend({
437+
props: {
438+
foo: {
439+
type: [Object, Number],
440+
default: {}
441+
} as PropOptions<object>
442+
}
443+
});`,
444+
parserOptions: { ecmaVersion: 6, sourceType: 'module' },
445+
parser: 'typescript-eslint-parser',
446+
errors: errorMessage('function or number')
418447
}
419448
]
420449
})

0 commit comments

Comments
 (0)