[Merge] pull request #1330 from nanoric/fix_readme_code

Fix pylint usage in readme
This commit is contained in:
vn.py 2019-01-13 15:47:06 +08:00 committed by GitHub
commit 80193f6ebb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,8 +9,8 @@ vnpy 2.0
在提交代码的时候,请遵守以下规则,以提高代码质量:
* 使用[yapf]目前必须使用github上的最新代码```pip install https://github.com/google/yapf/archive/master.zip```)格式化你的代码。对你的每一个文件运行```yapf --style .style.yapf <file>```即可。
* 使用[pylint]检查你的代码确保没有error和warning。我们使用的pylint规则在项目根目录下。运行```pylint --rcfile=pylintrc vnpy```即可。
* 使用[yapf]目前必须使用github上的最新代码```pip install https://github.com/google/yapf/archive/master.zip```)格式化你的代码。对你的每一个文件运行```yapf -i --style .style.yapf <file>```即可。
* 使用[pylint]检查你的代码确保没有error和warning。我们使用的pylint规则在项目根目录下。运行```pylint --rcfile=.pylintrc vnpy```即可。
[yapf]:https://github.com/google/yapf
[pylint]:https://github.com/PyCQA/pylint