Vs code 用户设置和工作空间设置

工作目录下有一个.vscode文件,里面有settings.json。

  1. 自动保存
  2. 主题方案
  3. 字体大小
  4. 下载vscode icons 插件,并设置其为文件图标主题
  5. 下载path intelligence插件,并配置,配合jsconfig使用。
image.png

用户默认设置:
file-->preferences-->settings
里面设置了eslint语法检查等。

具体用户设置配置如下:

``

{

"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"editor.fontSize": 18,
"path-intellisense.mappings": {
    "common/*": ["${workspaceRoot}/src/components/common"  ],
    "action/*": [
        "${workspaceRoot}/src/redux/action"
    ],
    "root/*": [
        "${workspaceRoot}/src"
    ],
    "workbench/*": [
        "${workspaceRoot}/src/components/workbench"
    ],
    "prepareAPath/*": [
        "${workspaceRoot}/src/redux/action/workbench/dataprepare"
    ],
    "updateChart/*": [
        "${workspaceRoot}/src/redux/action/workbench/visualize-component/UpdateChart.action.js"
    ],
},
"workbench.startupEditor": "newUntitledFile",
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 0,
// #每次保存的时候自动格式化 
"editor.formatOnSave": true,
// #每次保存的时候将代码按eslint格式进行修复
"eslint.autoFixOnSave": true,
// 添加 vue 支持
"eslint.validate": [
    "javascript",
    "javascriptreact",
    {
        "language": "vue",
        "autoFix": true
    }
],
//  #让prettier使用eslint的代码格式进行校验 
"prettier.eslintIntegration": true,
//  #去掉代码结尾的分号 
"prettier.semi": false,
//  #使用带引号替代双引号 
//"prettier.singleQuote": true,
//  #让函数(名)和后面的括号之间加个空格
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
// #这个按用户自身习惯选择 
"vetur.format.defaultFormatter.html": "js-beautify-html",
// #让vue中的js按编辑器自带的ts格式进行格式化 
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatterOptions": {
    "js-beautify-html": {
        "wrap_attributes": "force-aligned"
        // #vue组件中html代码格式化样式
    }
},
// 格式化stylus, 需安装Manta's Stylus Supremacy插件
"stylusSupremacy.insertColons": false, // 是否插入冒号
"stylusSupremacy.insertSemicolons": false, // 是否插入分好
"stylusSupremacy.insertBraces": false, // 是否插入大括号
"stylusSupremacy.insertNewLineAroundImports": false, // import之后是否换行
"stylusSupremacy.insertNewLineAroundBlocks": false // 两个选择器中是否换行

}
``

jsconfig.json文件

``
{

"compilerOptions": {
    "target": "ES6",
    "jsx":"react",
    "experimentalDecorators":true,
    "baseUrl":".",
    "paths":{
        "common/*":["./src/components/common/*"],
        "action/*":["./src/redux/action/*"],
        "workbench/*":["./src/components/workbench/*"],
        "prepareAPath/*":["./src/redux/action/workbench/dataprepare/*"],
        "updateChart/*":["./src/redux/action/workbench/visualize-component/UpdateChart.action.js/*"],
    }
},
"exclude": [
    "node_modules",
    "scripts"
]

}
``

webpack里面 alias 配置如下:

``
alias: {

        // Support React Native Web
        // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/
        'react-native': 'react-native-web',
        'root': path.resolve(__dirname, '../src'),
        'common': path.resolve(__dirname, '../src/components/common'),
        'action': path.resolve(__dirname, '../src/redux/action'),
        'workbench':path.resolve(__dirname,'../src/components/workbench'),
        'prepareAPath':path.resolve(__dirname,'../src/redux/action/workbench/dataprepare'),
        'updateChart': path.resolve(__dirname, '../src/redux/action/workbench/visualize-component/UpdateChart.action.js'),
    },

``
https://blog.csdn.net/u013304372/article/details/78917536

你可能感兴趣的:(Vs code 用户设置和工作空间设置)