Skip to content

Commit

Permalink
Make pylint ignore the 'gcloud/_apitools' modules until cleanups done.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Oct 16, 2015
1 parent d2e4f99 commit b8b2766
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions gcloud/_apitools/buffered_stream.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: skip-file
"""Small helper class to provide a small slice of a stream.
This class reads ahead to detect if we are at the end of the stream.
Expand Down
1 change: 1 addition & 0 deletions gcloud/_apitools/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: skip-file
"""Exceptions for generated client libraries."""


Expand Down
1 change: 1 addition & 0 deletions gcloud/_apitools/http_wrapper.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: skip-file
"""HTTP wrapper for apitools.
This library wraps the underlying http library we use, which is
Expand Down
1 change: 1 addition & 0 deletions gcloud/_apitools/stream_slice.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: skip-file
"""Small helper class to provide a small slice of a stream."""

from gcloud._apitools import exceptions
Expand Down
1 change: 1 addition & 0 deletions gcloud/_apitools/transfer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: skip-file
"""Upload and download support for apitools."""
from __future__ import print_function

Expand Down
1 change: 1 addition & 0 deletions gcloud/_apitools/util.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: skip-file
"""Assorted utilities shared between parts of apitools.
Pruned to include only helpers used by other vendored-in modules:
Expand Down
2 changes: 0 additions & 2 deletions pylintrc_default
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,8 @@
# os.walk in astroid.modutils.get_module_files.
# RATIONALE:
# _datastore_v1_pb2.py: protobuf-generated code.
# gcloud/_apitools: vendored-in code (remove when cleaned up)
ignore =
_datastore_v1_pb2.py
gcloud/_apitools

# Pickle collected data for later comparisons.
# DEFAULT: persistent=yes
Expand Down

0 comments on commit b8b2766

Please sign in to comment.