Skip to content
官方QQ交流群
技术交流1:87208295   点此加入
技术交流2:787747122   点此加入
官网
云控制台
开放平台
关注微信公众号
代码仓库: 码云

vscode配置

在项目根目录下创建 .vscode目录,目录结构如下

/
├── .vscode
    ├── .gitignore
    ├── extensions.json
    ├── settings.json
/
├── .vscode
    ├── .gitignore
    ├── extensions.json
    ├── settings.json

配置 .gitignore

*
!.gitignore
!/extensions.json
!/settings.json
*
!.gitignore
!/extensions.json
!/settings.json

配置 extensions.json

json
{
    "recommendations": [
    ]
}
{
    "recommendations": [
    ]
}

配置 settings.json

json
{
    "editor.formatOnSave": true,
    "editor.detectIndentation": false,
    "editor.tabSize": 2,
    "[python]": {
      "editor.tabSize": 4,
    },
    "python.linting.flake8Enabled": true,
    "python.formatting.provider": "yapf",
    "python.formatting.yapfArgs": [
      "--style={column_limit=128}"
    ],
    "python.linting.flake8Args": [
      "--max-line-length=248",
      "--ignore=W191, E266, W504"
    ],
    "python.linting.pylintEnabled": false
}
{
    "editor.formatOnSave": true,
    "editor.detectIndentation": false,
    "editor.tabSize": 2,
    "[python]": {
      "editor.tabSize": 4,
    },
    "python.linting.flake8Enabled": true,
    "python.formatting.provider": "yapf",
    "python.formatting.yapfArgs": [
      "--style={column_limit=128}"
    ],
    "python.linting.flake8Args": [
      "--max-line-length=248",
      "--ignore=W191, E266, W504"
    ],
    "python.linting.pylintEnabled": false
}

Copyright © 2017 10yun.com | 十云提供计算服务-IPV6 | ctocode组开发