1 Star 0 Fork 0

deeplearningrepos/garage

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.pylintrc 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
Iris Liu 提交于 2020-09-26 08:13 +08:00 . Documentation on TD3 (#1893)
[MASTER]
# Check docstring completeness
load-plugins = pylint.extensions.docparams, pylint.extensions.docstyle
# Unit tests have a special configuration which is checked separately
ignore = tests/garage, benchmarks
# Go as fast as you can
jobs = 0
# Packages which we need to load so we can see their C extensions
extension-pkg-whitelist =
numpy.random,
mpi4py.MPI,
[MESSAGES CONTROL]
enable = all
disable =
# Style rules handled by yapf/flake8/isort
bad-continuation,
invalid-name,
line-too-long,
wrong-import-order,
# Class must have 2 public methods seems arbitary
too-few-public-methods,
# Algorithms and neural networks generally have a lot of variables
too-many-instance-attributes,
too-many-arguments,
too-many-locals,
# Detection seems buggy or unhelpful
duplicate-code,
# Allow more readable code
no-else-return,
# Discourages small interfaces
too-few-public-methods,
[REPORTS]
msg-template = {path}:{line:3d},{column}: {msg} ({symbol})
output-format = colorized
[TYPECHECK]
# Packages which might not admit static analysis because they have C extensions
generated-members = torch.*
[PARAMETER_DOCUMENTATION]
# Docstrings are required and should be complete
accept-no-param-doc=no
accept-no-raise-doc=no
accept-no-return-doc=no
accept-no-yields-doc=no
default-docstring-type=google
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/deeplearningrepos/garage.git
git@gitee.com:deeplearningrepos/garage.git
deeplearningrepos
garage
garage
master

搜索帮助