1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-03 19:10:58 +08:00

update readme and rst

This commit is contained in:
wangwenxi.handsome
2021-07-12 21:51:08 +08:00
parent d5059e609f
commit b504cc6ac8
2 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
.. _code_standard:
=================================
Code Standard
=================================
Docstring
=================================
Please use the Numpy Style.
Continuous Integration
=================================
Continuous Integration (CI) tools help you stick to the quality standards by running tests every time you push a new commit and reporting the results to a pull request.
A common error is the mixed use of space and tab. You can fix the bug by inputing the following code in the command line.
.. code-block:: python
pip install black
python -m black . -l 120