build(pylint): added .pylintrc to exclude some rules

.pylintrc had rules ignore docs strings for module, function and class. this can be customised by the end user.

!9 #7
This commit is contained in:
2021-08-12 14:02:59 +09:30
parent 389bc08d76
commit 73e061e649
3 changed files with 13 additions and 3 deletions

View File

@ -61,6 +61,7 @@ include:
PyLint:
variables:
PYLINT_PATH: "/*/*.py"
PYLINT_RC_PATH: "."
extends:
- .PyLint
image: python:3.6-slim
@ -72,6 +73,7 @@ PyLint:
| var name | Description |
|:----:|:----|
| PYLINT_PATH | *The path you wish the linter to search for python files* |
| PYLINT_RC_PATH | *The path to your `.pylintrc` file.* |
## Job Workflow