xref: /aosp_15_r20/external/cronet/build/fuchsia/test/pylintrc (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1[MESSAGES CONTROL]
2
3# Disable the message, report, category or checker with the given id(s).
4disable=fixme,
5
6# fixme
7# This complains about TODOs, which are perfectly valid to have.
8
9# Suppression for invalid-name error for PRESUBMIT.py file.
10good-names=i,j,k,f,PRESUBMIT
11
12[REPORTS]
13
14reports=no
15
16[DESIGN]
17
18# Maximum number of arguments for function / method
19max-args=6
20
21# Maximum number of instance attributes
22max-attributes=10
23
24[FORMAT]
25
26max-line-length=80
27
28[SIMILARITIES]
29ignore-comments=yes
30ignore-docstrings=yes
31ignore-imports=yes
32