File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 37
37
"vite" : " ^5.4.1"
38
38
},
39
39
"peerDependencies" : {
40
- "typescript" : " ^5.5.4 "
40
+ "typescript" : " ^5.6.2 "
41
41
},
42
42
"scripts" : {
43
43
"dev" : " echo 'Open this directory in VSCode and then run your extension with F5 or `Run and Debug > Run Extension`!'" ,
53
53
"demo" : " bun run --cwd ./src/demo/ vite" ,
54
54
"build-demo" : " bun run --cwd ./src/demo/ vite build --outDir ../../dist/demo --base '/function-graph-overview/'" ,
55
55
"format" : " bun prettier . --write --log-level silent" ,
56
- "lint" : " bun format && bun run eslint" ,
56
+ "lint" : " bun format && bun run eslint || bun run tsc --noEmit " ,
57
57
"generate-parsers" : " bun run ./scripts/generate-parsers.ts"
58
58
},
59
59
"//" : " START EXTENSION ATTRIBUTES" ,
104
104
"engines" : {
105
105
"vscode" : " ^1.86.0"
106
106
}
107
- }
107
+ }
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ export class CFGBuilder {
24
24
private activeClusters : Cluster [ ] = [ ] ;
25
25
26
26
constructor ( options ?: BuilderOptions ) {
27
-
28
27
this . flatSwitch = options ?. flatSwitch ?? false ;
29
28
this . markerPattern = options ?. markerPattern ?? null ;
30
29
}
You can’t perform that action at this time.
0 commit comments