Go to file
2019-01-26 17:24:38 +08:00
binding [Merge] pull request #1354 from nanoric/generator 2019-01-24 09:08:42 +08:00
tests [Mod]change formatting tools to black 2019-01-26 17:24:38 +08:00
tools/ci [Mod]change formatting tools to black 2019-01-26 17:24:38 +08:00
vnpy [Mod]change formatting tools to black 2019-01-26 17:24:38 +08:00
.gitignore [Add] added generator code 2019-01-23 03:41:03 -04:00
.pylintrc [Mod] 消除pylint对Enum的抱怨 2019-01-19 02:37:02 -04:00
.style.yapf Merge branch 'v2.0-DEV' of https://github.com/vnpy/vnpy into v2.0-DEV 2019-01-08 20:45:37 +08:00
.travis.yml [Mod] move travis/ into tools/ci 2019-01-19 02:14:10 -04:00
LICENSE [Add]add license file 2019-01-04 15:14:15 +08:00
Readme.md [Fix] 修复:pylint的代码少了个. 2019-01-13 00:29:17 -04:00
requirements-dev.txt [Add] added travis script 2019-01-07 02:20:54 -04:00
requirements.txt [Mod]change formatting tools to black 2019-01-26 17:24:38 +08:00

vnpy 2.0

贡献代码


如果你遇到了任何BUG欢迎创建 Issue

我们热烈欢迎任何人为我们的项目贡献代码。无论是多么细小的改工,都可以提交PR我们会认真对待每一个PR。

在提交代码的时候,请遵守以下规则,以提高代码质量:

  • 使用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即可。