Wei-Yu Chen | 49950b9 | 2021-11-08 19:19:18 +0800 | [diff] [blame] | 1 | # pylint config (ini format) |
| 2 | # |
| 3 | # SPDX-FileCopyrightText: © 2021 Open Networking Foundation <support@opennetworking.org> |
| 4 | # SPDX-License-Identifier: Apache-2.0 |
| 5 | |
| 6 | [MESSAGES CONTROL] |
| 7 | |
| 8 | disable= invalid-name, |
| 9 | missing-class-docstring, |
| 10 | missing-function-docstring, |
| 11 | missing-module-docstring, |
| 12 | import-outside-toplevel, |
| 13 | fixme, |
| 14 | too-few-public-methods, |
| 15 | too-many-lines, |
| 16 | too-many-locals, |
| 17 | too-many-nested-blocks, |
| 18 | too-many-branches, |
| 19 | too-many-statements, |
| 20 | too-many-arguments, |
| 21 | too-many-instance-attributes, |
| 22 | too-many-return-statements, |
| 23 | global-statement, |
| 24 | consider-using-f-string, |
| 25 | no-else-return |