您的位置:首页 > 编程语言 > Python开发

vscode python 的用户设置

2017-02-05 11:49 771 查看
{
"workbench.colorTheme": "Vibrant_Ink",
"window.zoomLevel": 1,
"editor.fontFamily": "'Source Code Pro','文泉驿等宽微米黑'",
"editor.fontSize": 16,
"editor.rulers": [80,100,120],

"python.linting.pylintEnabled": true,
"python.linting.pylintArgs": ["--max-line-length=120","--disable=E712,E1101,C0121,C0301,F405,E711,C0103,E0102,C0111"],
"python.formatting.autopep8Args": ["--max-line-length=120","--ignore=E712,E1101,C0121,C0301,F405,E711,C0103,E0102,C0111"],
"python.linting.pep8Enabled": true,
"python.linting.pep8Args":  ["--max-line-length=120","--ignore=E712,E1101,C0121,C0301,F405,E711,C0103,E0102,C0111"],
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": ["--max-line-length=120","--ignore=E712,E1101,C0121,C0301,F405,E711,C0103,E0102,C0111"],

"python.formatting.formatOnSave": true,
"jupyter.appendResults": true,
"git.enableSmartCommit": true,

"workbench.colorCustomizations": {
"editor.background": "#000000"
},
"editor.tokenColorCustomizations": {
"functions":{
"foreground": "#D9E96C"
},
"types":{
"foreground": "#05bcff"
},
"variables":{
"foreground": "#9289FC"
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: