-
Notifications
You must be signed in to change notification settings - Fork 38
/
pinecms.code-workspace
138 lines (138 loc) · 3.97 KB
/
pinecms.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"GuodongSun.vscode-git-cruise", // git 历史管理
"maciejdems.add-to-gitignore", // 添加到忽略
"JanBn.git-last-commit-message", // 快速提交
"k--kato.intellij-idea-keybindings", // idea 快捷键
"anweber.vscode-httpyac", // http 接口测试
"saber2pr.file-git-history", // 文件历史记录
"mk12.better-git-line-blame", // git blame
"alefragnani.Bookmarks", // 书签
"MS-CEINTL.vscode-language-pack-zh-hans", // 中文
"streetsidesoftware.code-spell-checker", // 拼写检查
"jgclark.vscode-todo-highlight", // 高亮todo
"be5invis.vscode-icontheme-nomo-dark", // icon图标
"eenaree.webstorm-new-dark", // 主题
"golang.go", // golang
"ohanedan.lowlight-go-errors", // 错误低亮
"whosydd.go-tags", // 为结构体快捷增加标签
"farnetani.ddl-to-go-struct", // 将DDL转换为结构体
"usernamehw.errorlens", // 错误提示
"wero.go-struct-tag", // 为结构体增加标签
"maracko.json-to-go", // 将json转换为结构体
"chadalen.vscode-jetbrains-icon-theme",
"zerefdev.todo-highlighter",
"whosydd.go-impl",
]
},
"settings": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.showWords": true,
"editor.lineHeight": 1.5,
"gopls": {
"analyses": {
"composites": false // 忽略指定优化警告
},
"ui.semanticTokens": true,
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"docs": true,
"deployments": true,
"configs/recom_cc.yml": true,
"scripts": true,
"Makefile": true,
"Jenkinsfile": true,
".golangci.yml": true,
"go.sum": true,
"**/__debug_bin*": true
},
"errorLens.enabledDiagnosticLevels": [
"error",
"warning",
],
"cSpell.words": [
"adlist",
"adminid",
"apidoc",
"bedirname",
"bleve",
"blevesearch",
"byts",
"cacher",
"casbin",
"Casbin",
"Catid",
"Decr",
"dede",
"errcode",
"fedirname",
"filemanager",
"flink",
"gktemplate",
"Grountues",
"interp",
"Intf",
"Ismenu",
"jwtkey",
"Krand",
"kwsql",
"kwtype",
"Metas",
"myad",
"operateid",
"parentid",
"pbigcache",
"pinecms",
"pjet",
"roleid",
"serv",
"sess",
"Sess",
"Sqls",
"tcell",
"tplfun",
"tview",
"vmap",
"webssh",
"xorm",
"zipsc",
"zxvf"
],
"go.lintTool": "revive", // 选择lint
"cSpell.ignoreWords": [
"ifnull"
],
"editor.fontSize": 12,
"search.useIgnoreFiles": false,
"search.exclude": {
"**/node_modules": false
},
"go.testTimeout": "120s",
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "调试项目",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go"
},
]
}
}