pylintrc 812 Bytes
Newer Older
1
2
[MASTER]
extension-pkg-whitelist=torch,
3
                        transformer_engine_extensions
4
5

disable=too-many-locals,
6
        too-many-public-methods,
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
        invalid-name,
        too-many-arguments,
        abstract-method,
        arguments-differ,
        too-many-instance-attributes,
        unsubscriptable-object,
        import-outside-toplevel,
        too-many-statements,
        import-error,
        too-many-lines,
        use-maxsplit-arg,
        protected-access,
        pointless-string-statement,
        cyclic-import,
        duplicate-code,
        no-member,
        attribute-defined-outside-init,
        global-statement,
        too-many-branches,
        global-variable-not-assigned,
        redefined-argument-from-local

[TYPECHECK]
ignored-modules=torch
ignored-classes=torch