File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Download Pages: [GitHub Releases](https://github.com/volarjs/insiders/releases/t
12
12
13
13
## 2.0.21 (2024-06-08)
14
14
15
- ### But Fixes
15
+ ### Bug Fixes
16
16
17
17
- fix(typescript-plugin): TS plugin cause type checking broken in .ts files (#4453 )
18
18
@@ -33,7 +33,7 @@ Download Pages: [GitHub Releases](https://github.com/volarjs/insiders/releases/t
33
33
- feat(language-service): add localization support for zh-hk/zh-tw
34
34
- feat(vscode): enable syntax highlighting of cue code blocks in MDX (#4425 ) - Thanks @remcohaszing
35
35
36
- ### But Fixes
36
+ ### Bug Fixes
37
37
38
38
- fix(vscode): fix "as"/"instanceof" expressions syntax highlight (#4412 )
39
39
- fix(language-core): ` ForIteratorExpression ` 's ` returns ` property may be undefined (#4418 ) - Thanks @so1ve
Original file line number Diff line number Diff line change 1
1
import { defineConfig } from '@tsslint/config' ;
2
+ import { getDefaultRules as getDefaultVolarRules } from 'https://raw.githubusercontent.com/volarjs/volar.js/master/tsslint.config.ts' ;
2
3
3
4
export default defineConfig ( {
4
- ...( await import ( 'https://raw.githubusercontent.com/volarjs/volar.js/master/tsslint.config.ts' ) ) . default ,
5
+ rules : {
6
+ ...getDefaultVolarRules ( ) ,
7
+ } ,
5
8
plugins : [
6
9
( { tsconfig } ) => ( {
7
10
resolveRules ( rules ) {
@@ -11,5 +14,5 @@ export default defineConfig({
11
14
return rules ;
12
15
} ,
13
16
} ) ,
14
- ]
17
+ ] ,
15
18
} ) ;
You can’t perform that action at this time.
0 commit comments