0%

前端开发插件

作者:李旭光
引用请标明出处

插件安装

Prettier - Code formatter

格式化工具

ESLint

校验规则

Vetur

vue代码片段及代码美化

Vue 2 Snippets

vue2 代码片段

vscode-fileheader

文件注释

配置项

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
// setting.json vscode配置文件
{
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", \\ 自行配置自己的环境地址
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.tabSize": 2,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"sync.gist": "748b4cae5eb6e56d6997978ead096e8f",
"breadcrumbs.enabled": true,
"todohighlight.isEnable": false,
"liveServer.settings.donotShowInfoMsg": true,
"search.location": "sidebar",
"workbench.activityBar.visible": true,
"window.menuBarVisibility": "default",
"workbench.statusBar.visible": true,
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"workbench.colorTheme": "Tiny Light",
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "html",
"autoFix": true
},
{
"language": "vue",
"autoFix": true
}
],
"prettier.eslintIntegration": true,
"files.autoSave": "onWindowChange",
"code-runner.saveAllFilesBeforeRun": true,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatter.js": "vscode-typescript",
"prettier.jsxSingleQuote": true,
"prettier.requireConfig": false,
"prettier.arrowParens": "always",
"typescript.format.insertSpaceAfterSemicolonInForStatements": false,
"prettier.stylelintIntegration": true,
"prettier.singleQuote": true,
"prettier.tslintIntegration": true,
"eslint.provideLintTask": true,
"eslint.autoFixOnSave": true,
"editor.mouseWheelZoom": true,
"editor.tabCompletion": "on",
"editor.formatOnType": true,
"eslint.alwaysShowStatus": true,
"eslint.options": {
"configFile": "E:/project/xxjs/fore-core/.eslintrc.js" // 自行配置自己的项目地址
},
"fileheader.Author": "Li.Xg", // 自行配置自己的名称
"fileheader.LastModifiedBy": "Li.Xg" // 自行配置自己的名称
}
如果觉得不错请支持作者
------ 版权声明 ------

本文标题:前端开发插件

文章作者:

发布时间:2022年06月01日 - 00:00

最后更新:2023年09月20日 - 10:25

原始链接:https://blog.lifesli.com/2022/06/01/%E5%89%8D%E7%AB%AF%E5%BC%80%E5%8F%91%E6%8F%92%E4%BB%B6/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。