renamed file after testing .pylintrc.bak -> .pylintrc
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/99b7bda8 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/99b7bda8 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/99b7bda8 Branch: refs/heads/trunk Commit: 99b7bda820f706567b6ca2509c27a6831b06ba36 Parents: 805a272 Author: mitch <[email protected]> Authored: Tue Nov 13 11:56:02 2018 -0500 Committer: mitch <[email protected]> Committed: Tue Nov 13 11:56:02 2018 -0500 ---------------------------------------------------------------------- .pylintrc | 36 ++++++++++++++++++++++++++++++++++++ .pylintrc.bak | 36 ------------------------------------ 2 files changed, 36 insertions(+), 36 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/99b7bda8/.pylintrc ---------------------------------------------------------------------- diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..21b7711 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,36 @@ +[MASTER] +# Add <file or directory> to the black list. It should be a base name, not a +# path. You may set this option multiple times. +ignore=test +ignore=constants + + +# Pickle collected data for later comparisons. +persistent=yes + +# List of plugins (as comma separated values of python modules names) to load, +# usually to register additional checkers. +load-plugins= + + +[MESSAGES CONTROL] +disable=redefined-builtin,too-many-arguments,too-few-public-methods,missing-docstring,invalid-name,abstract-method,no-self-use + + +[TYPECHECK] +# List of members which are set dynamically and missed by pylint inference +# system, and so shouldn't trigger E0201 when accessed. Python regular +# expressions are accepted. +generated-members=async_request,objects + +[VARIABLES] + +# Tells whether we should check for unused import in __init__ files. +init-import=no + +# A regular expression matching names used for dummy variables (i.e. not used). +dummy-variables-rgx=_|dummy + +# List of additional names supposed to be defined in builtins. Remember that +# you should avoid to define new builtins when possible. +additional-builtins= http://git-wip-us.apache.org/repos/asf/libcloud/blob/99b7bda8/.pylintrc.bak ---------------------------------------------------------------------- diff --git a/.pylintrc.bak b/.pylintrc.bak deleted file mode 100644 index 21b7711..0000000 --- a/.pylintrc.bak +++ /dev/null @@ -1,36 +0,0 @@ -[MASTER] -# Add <file or directory> to the black list. It should be a base name, not a -# path. You may set this option multiple times. -ignore=test -ignore=constants - - -# Pickle collected data for later comparisons. -persistent=yes - -# List of plugins (as comma separated values of python modules names) to load, -# usually to register additional checkers. -load-plugins= - - -[MESSAGES CONTROL] -disable=redefined-builtin,too-many-arguments,too-few-public-methods,missing-docstring,invalid-name,abstract-method,no-self-use - - -[TYPECHECK] -# List of members which are set dynamically and missed by pylint inference -# system, and so shouldn't trigger E0201 when accessed. Python regular -# expressions are accepted. -generated-members=async_request,objects - -[VARIABLES] - -# Tells whether we should check for unused import in __init__ files. -init-import=no - -# A regular expression matching names used for dummy variables (i.e. not used). -dummy-variables-rgx=_|dummy - -# List of additional names supposed to be defined in builtins. Remember that -# you should avoid to define new builtins when possible. -additional-builtins=
