File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11import eslint from "@eslint/js" ;
22import eslintConfigPrettier from "eslint-config-prettier/flat" ;
3+ import { defineConfig } from "eslint/config" ;
34import tseslint from "typescript-eslint" ;
45
5- export default tseslint . config (
6+ export default defineConfig (
67 eslint . configs . recommended ,
78 tseslint . configs . strictTypeChecked ,
89 tseslint . configs . stylisticTypeChecked ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export class OpenInISEFeature implements vscode.Disposable {
1818
1919 const document = editor . document ;
2020 const uri = document . uri ;
21- let ISEPath = process . env . windir ?? "C:\\Windows" ;
21+ let ISEPath : string = process . env . windir ?? "C:\\Windows" ;
2222
2323 if ( process . env . PROCESSOR_ARCHITEW6432 !== undefined ) {
2424 ISEPath += "\\Sysnative" ;
You can’t perform that action at this time.
0 commit comments