Skip to content

Commit a1ca17d

Browse files
authored
Merge pull request #2259 from yoyo930021/fix-2258
Fix #2258
2 parents 65f98a6 + de7229c commit a1ca17d

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
### 0.xx.xx | 2020-xx-xx |
4+
- 🙌 Ignore no implicitly any error in v-slot with destructuring. Thanks to contribution from [@yoyo930021](https://github.com/yoyo930021). #2258 and #2259.
5+
36
### 0.27.2 | 2020-09-06 | [VSIX](https://marketplace.visualstudio.com/_apis/public/gallery/publishers/octref/vsextensions/vetur/0.27.2/vspackage)
47

58
- Add a config `vetur.validation.props` to toggle props validation. Default to false. #2249.

server/src/services/typescriptService/templateDiagnosticFilter.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ export function createTemplateDiagnosticFilter(tsModule: T_TypeScript) {
4949
};
5050

5151
const ignoreNoImplicitAnyViolationInNativeEvent: DiagnosticFilter = diag => {
52-
const noImplicitAnyViolation = 7006;
52+
const noImplicitAnyViolation = [7006, 7031];
5353

54-
if (diag.code !== noImplicitAnyViolation) {
54+
if (!noImplicitAnyViolation.includes(diag.code)) {
5555
return true;
5656
}
5757

@@ -61,7 +61,7 @@ export function createTemplateDiagnosticFilter(tsModule: T_TypeScript) {
6161
}
6262

6363
const target = findNodeFromDiagnostic(diag, source);
64-
if (target && tsModule.isParameter(target.parent)) {
64+
if (target && (tsModule.isParameter(target.parent) || tsModule.isBindingElement(target.parent))) {
6565
return false;
6666
}
6767

test/interpolation/features/diagnostics/basic.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,8 @@ describe('Should find template-diagnostics in <template> region', () => {
260260
'hyphen-attrs.vue',
261261
'template-literal.vue',
262262
'no-implicit-any-parameters.vue',
263-
'no-implicit-any-v-for-array.vue'
263+
'no-implicit-any-v-for-array.vue',
264+
'issue-2258.vue'
264265
];
265266

266267
noErrorTests.forEach(t => {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<template>
2+
<mcOssfileView>
3+
<template v-slot="{item}">{{item.name}}</template>
4+
<template v-slot:after="item">
5+
<div class="info-bar">
6+
<div class="text">{{item.name}}</div>
7+
</div>
8+
</template>
9+
</mcOssfileView>
10+
</template>

0 commit comments

Comments
 (0)