~apport-hackers/apport/main

« back to all changes in this revision

Viewing changes to .pylintrc

  • Committer: Simon Chopin
  • Author(s): Benjamin Drung
  • Date: 2023-04-20 13:51:57 UTC
  • Revision ID: git-v1:35a8473e3272270a9f70180e51877d9311259406
refactor: Increase pylint's max args to 6

Increase the allowed maximum arguments to six and move the overrides to
the individual functions/methods.

Signed-off-by: Benjamin Drung <benjamin.drung@canonical.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
  duplicate-code,
28
28
  invalid-name,
29
29
  missing-docstring,
30
 
  too-many-arguments,
31
30
  too-many-instance-attributes,
32
31
  too-many-lines,
33
32
  too-many-public-methods,
46
45
 
47
46
# Maximum number of characters on a single line.
48
47
max-line-length=79
 
48
 
 
49
 
 
50
[DESIGN]
 
51
 
 
52
# Maximum number of arguments for function / method.
 
53
max-args=6