forked from ntpsec/ntpsec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylintrc
26 lines (22 loc) · 772 Bytes
/
pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# NTPsec configuration for pylintrc
# NTPsec 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.
[MESSAGES CONTROL]
# Disable warnings that are silly
disable=bad-continuation,
consider-using-f-string,
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