File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " vscode-eslint" ,
3
3
"displayName" : " ESLint" ,
4
4
"description" : " Integrates ESLint JavaScript into VS Code." ,
5
- "version" : " 2.1.10 " ,
5
+ "version" : " 2.1.11 " ,
6
6
"author" : " Microsoft Corporation" ,
7
7
"license" : " MIT" ,
8
8
"repository" : {
472
472
"@types/mocha" : " ^7.0.2" ,
473
473
"mocha" : " ^7.1.2"
474
474
}
475
- }
475
+ }
Original file line number Diff line number Diff line change @@ -874,8 +874,8 @@ function resolveSettings(document: TextDocument): Promise<TextDocumentSettings>
874
874
const Uri = URI . parse ( uri ) ;
875
875
const isFile = Uri . scheme === 'file' ;
876
876
let pattern : string = isFile
877
- ? Uri . path . replace ( / \\ / g, '/' )
878
- : Uri . path ;
877
+ ? Uri . fsPath . replace ( / \\ / g, '/' )
878
+ : Uri . fsPath ;
879
879
pattern = pattern . replace ( '[' , '\\[' ) ;
880
880
pattern = pattern . replace ( ']' , '\\]' ) ;
881
881
pattern = pattern . replace ( '{' , '\\{' ) ;
You can’t perform that action at this time.
0 commit comments