Open Manjushaka opened 6 years ago
// 将设置放入此文件中以覆盖默认值和用户设置。
{
"editor.tabSize": 2,
"prettier.tabWidth": 2,
"prettier.eslintIntegration": true,
"prettier.singleQuote": true,
"typescript.quickSuggestionsForPaths": true,
"path-intellisense.mappings": {
"rrp": "${workspaceRoot}/src",
"dyc": "${workspaceRoot}/framework/src"
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true
},
"eslint.enable": true
}
// 将设置放入此文件中以覆盖默认设置
{
"workbench.colorTheme": "Enki Aster",
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 0,
"editor.wordWrap": "on",
"prettier.eslintIntegration": true,
"editor.snippetSuggestions": "top"
}
.editorconfig的设置会覆盖用户/工作区设置。
官网 统一不同编辑器代码风格的配置。 一个名称为
.editorconfig
的自定义文件。部分编辑器原生支持,部分编辑器需要安装插件,这个可以在官网查询到(vs code需要安装插件)。 当打开一个文件时,EditorConfig会在打开文件的目录和其每一级父目录查找.editorconfig文件,直到到达最顶层目录或者是有一个配置.editorconfig文件且配置了root=true。 .editorConfig配置文件需要是UTF-8字符集编码的, 以回车换行或换行作为一行的分隔符。斜线(/)被用作为一个路径分隔符,井号(#)或分号(;)被用作于注释. 注释需要与注释符号写在同一行例子1:
例子2: