• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[MESSAGES CONTROL]
2
3disable=
4    # TODO(patricktu@):Remove "too-few-public-methods" when project_info.py ok.
5    too-few-public-methods,
6    # TODO(albaltai@):Remove "fixme" when each module implement finished.
7    fixme,
8    # More than 7 variables is reasonable in ModuleData class.
9    too-many-instance-attributes
10
11[TYPECHECK]
12
13ignored-modules=
14    # For sharing modules from atest project.
15    atest,
16    metrics
17
18[FORMAT]
19
20# Maximum number of characters on a single line.
21max-line-length=80
22