Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 850 Bytes

CONTRIBUTING.md

File metadata and controls

41 lines (29 loc) · 850 Bytes

Contributing

Thank you for investing your time in contributing to this project! ✨.

Make Changes

When you're finished with the changes, create a pull request, also known as a PR.

  • Please helps reviewers understand the purpose of your pull request.
  • Don't forget to link PR to issue if you are solving one.
  • If you run into any merge issues, please resolve merge conflicts and other issues.

Development

Build

Install clang-tools from source code

$ git clone [email protected]:cpp-linter/clang-tools-pip.git
# Need root permission
$ sudo python3 setup.py install
# Install clang-tools version 13
$ sudo python3 main.py --install true --version 13

Test

# run test
$ pytest
# run test with code covarege
$ coverage run -m pytest

Code format

# check code format with flake8
$ flake8 .