mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 20:51:25 +03:00
1.4 KiB
1.4 KiB
If you have any questions, you can write to the mail or Telegram
Fork and clone your repository
- Fork the repository (click here to fork now)
- Clone your forked code
git clone https://github.com/<nickname>/Kekkai.git
- Create new branch
git branch <name_new_branch>
- Switch to new branch
git checkout <name_new_branch>
- Push your commits
- Submit a new Pull Request
Testing
Code Style
Pylint
, mypy
, eslint
and prettier
are used as code syntax checks
Checking the Node.JS code
To check the code, you must first download the necessary libraries, which are located at the root of the project
npm install
eslint
and prettier
is used to check and automatically correct the Node.JS code
npm eslint .
Checking the Python code
To check code, you need to install libraries mypy
and pylint
python3 -m pip install -U mypy
and install pylint
pip install pylint
Start check the code
for pylint
:
pylint /chart/
and for mypy
:
mypy /chart/