AndrewZhaoLuo commented on code in PR #11327:
URL: https://github.com/apache/tvm/pull/11327#discussion_r875264637
##########
tests/lint/pylintrc:
##########
@@ -82,7 +82,7 @@ enable=indexing-exception,old-raise-syntax
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
-disable=design,similarities,no-self-use,attribute-defined-outside-init,locally-disabled,star-args,pointless-except,bad-option-value,global-statement,fixme,suppressed-message,useless-suppression,locally-enabled,no-member,no-name-in-module,import-error,unsubscriptable-object,unbalanced-tuple-unpacking,undefined-variable,protected-access,useless-object-inheritance,consider-using-get,bad-continuation,too-many-lines
+disable=design,similarities,no-self-use,attribute-defined-outside-init,locally-disabled,star-args,pointless-except,bad-option-value,global-statement,fixme,suppressed-message,useless-suppression,locally-enabled,no-member,no-name-in-module,import-error,unsubscriptable-object,unbalanced-tuple-unpacking,undefined-variable,protected-access,useless-object-inheritance,consider-using-get,bad-continuation,too-many-lines,no-else-return
Review Comment:
Can we split this up into multiple lines to make it more readable (and
alphabetize).
e.g.
```
disable=
too-many-instance-attributes,
len-as-condition,
too-few-public-methods,
anomalous-backslash-in-string,
no-else-return,
simplifiable-if-statement,
too-many-arguments,
duplicate-code,
no-name-in-module,
no-member,
print-statement,
parameter-unpackin
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]