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

5
python/.pylintrc Normal file
View File

@ -0,0 +1,5 @@
[MASTER]
disable=
C0114, # missing-module-docstring
C0115, # missing-class-docstring
C0116, # missing-function-docstring