pylintrc 861 B

123456789101112131415161718192021222324252627282930
  1. # gpsd configuration for pylintrc
  2. # gpsd does not try to conform to pylint, but pylint can be useful
  3. # to find things like unused variables, missing docstrings, undefined
  4. # variables, unused imports, etc.
  5. #
  6. # The whitespace checker in pylint conflicts with that in pycodestyle.
  7. # pycodestyle replaces pep8 for checking PEP8 conformity.
  8. #
  9. # Use pylint as an advisory tool, not as a blunt instrument.
  10. #
  11. # This file is Copyright 2018 by the GPSD project
  12. # SPDX-License-Identifier: BSD-2-clause
  13. [MESSAGES CONTROL]
  14. # Disable warnings that are silly
  15. disable=bad-continuation,
  16. invalid-name,
  17. misplaced-comparison-constant,
  18. no-self-use,
  19. too-many-branches,
  20. too-many-lines,
  21. too-many-locals,
  22. too-many-nested-blocks,
  23. too-many-public-methods,
  24. too-many-statements
  25. # vim: set expandtab shiftwidth=4