1[MAIN] 2 3load-plugins= 4 pylint.extensions.no_self_use, 5 6ignore= 7 chromiumos, 8 test_data, 9 experimental, 10 # TODO(crbug.com/1092516): Enable linting on proto_converter files. 11 factory_config_proto_converter.py, 12 factory_config_proto_converter_unittest.py, 13 14# Specifying 0 will auto-detect the number of processors available to use. 15jobs=0 16 17extension-pkg-whitelist=lxml 18 19[BASIC] 20 21good-names= 22 f, 23 fp, 24 25[FORMAT] 26 27indent-string=" " 28 29[REPORTS] 30 31score=no 32 33[MESSAGES CONTROL] 34 35disable= 36 too-few-public-methods, 37 no-member, 38 fixme, 39 consider-using-f-string, 40 duplicate-code, 41 possibly-used-before-assignment, 42