Skip to content

Commit d341b2f

Browse files
committed
filepath 格式可以保存在工作区
1 parent a58ef69 commit d341b2f

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,10 @@
1313
"*.gafq": "lua",
1414
"functional": "cpp"
1515
},
16+
"leetcode-problem-rating.filePath": {
17+
"default": {
18+
"folder": "",
19+
"filename": "${id}.${kebab-case-name}_${yyyymmdd}.${ext}"
20+
}
21+
},
1622
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## version 2.17.7
2+
3+
- filepath 格式可以保存在工作区,避免每次新环境还要配文件名
4+
15
## version 2.17.6
26

37
- 最新的题通过后没有百分比运行信息

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-leetcode-problem-rating",
33
"displayName": "LeetCode",
44
"description": "%main.description%",
5-
"version": "2.17.6",
5+
"version": "2.17.7",
66
"author": "ccagml",
77
"publisher": "ccagml",
88
"license": "MIT",
@@ -767,7 +767,6 @@
767767
},
768768
"leetcode-problem-rating.filePath": {
769769
"type": "object",
770-
"scope": "machine",
771770
"description": "%main.contributes.configuration.properties.leetcode-problem-rating.filePath.description%",
772771
"properties": {
773772
"default": {

src/rpc/factory/api/testApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { reply } from "../../utils/ReplyUtils";
1515

1616
import { sessionUtils } from "../../utils/sessionUtils";
1717
import { ApiBase } from "../apiBase";
18-
import { commUtils } from "../../utils/commUtils";
18+
// import { commUtils } from "../../utils/commUtils";
1919
import { chainMgr } from "../../actionChain/chainManager";
2020

2121
class TestApi extends ApiBase {

0 commit comments

Comments
 (0)