VsCode 中 Python 开发高效插件配置
由于 VSCode 版本不断更新因此更新下插件;
更新:代码统计插件:VS Code Counter
Settings Sync
直接通过账号同步
在github中新建个gists服务对象存储配置文件;GistID
1
2 上传:shift+alt+u
下载:shift+alt+d
Material Theme
主题设置
Path Intellisense
路径自动补充
Remote-SSH
远程开发
vscode-icons
文件图标
修改terminal
setting.json 中修改:
1 | "terminal.integrated.shell.windows": "D:\\DevTools\\Git\\bin\\bash.exe" |
vscode python 头文件
路径:File-Preferences-User Snippets-python
1 | { |
autoDocstring
函数注释
pylint报错 no member
在setting.json
中添加:
1 | "python.linting.pylintArgs":["--disable=no-member"] |
github repo size
浏览器输入:https://api.github.com/repos/organization/repository
其中organization
替换为项目的所有者(组织),repository
替换为项目的名称。返回的页面是描述这个项目的JSON数据,其中的size指的就是项目的大小,单位为kB(千字节)。
联系作者
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 梦家博客!
评论
TwikooValine