15 lines
576 B
Markdown
15 lines
576 B
Markdown
|
|
Thank you for showing your interest in contributing! Contributions are the most welcome. Anything including small fixes is greatly appreciated.
|
||
|
|
|
||
|
|
Please keep your new code consistent with the existing codebase and follow the industry's best practices. Before committing, please make sure that your code passes the linting & security scanning suite.
|
||
|
|
|
||
|
|
To install linting tools, execute the following commands:
|
||
|
|
```sh
|
||
|
|
make lint-deps
|
||
|
|
make security-check-deps
|
||
|
|
```
|
||
|
|
|
||
|
|
After that, you will be able to run the linter and the security scanning tool.
|
||
|
|
```sh
|
||
|
|
make lint
|
||
|
|
make security-check
|
||
|
|
```
|