.pylintrc 706 Bytes
Newer Older
chenzk's avatar
v1.0.8  
chenzk committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[MASTER]
# Use multiprocessing for pylint
jobs=0

# List of members which are set dynamically and missed by Pylint inference
# system, and so shouldn't trigger E1101 when accessed.
ignore-paths=

load-plugins=linter.pylint.ban_rank,

[MESSAGES CONTROL]
# Disable list of rules
disable=
    no-member,                  # E1101: Module 'torch' has no 'allclose' member (no-member)
    no-name-in-module,          # E0611: No name 'HFTensorBoardLogger' in module 'huggingface_hub' (no-name-in-module)
    import-error,               # E0401: Unable to import 'tensorboardX' (import-error)
    relative-beyond-top-level   # E0402: Attempted relative import beyond top-level package (relative-beyond-top-level)