Devuan fork of gpsd
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
861 B

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