Files
conan-center-index/linter/pylintrc_testpackage
technic93 137297b85e (#15115) [linter] reduce pylint to just one command
* determine test_package folder in the lint rule

* delete old test specific linter config + update github workflow

* fixup: put bad specific config

---------

Co-authored-by: Chris Mc <christopherm@jfrog.com>
Co-authored-by: Chris Mc <prince.chrismc@gmail.com>
2023-04-18 21:05:30 +02:00

29 lines
669 B
Plaintext

[MASTER]
load-plugins=linter.conanv2_transition,
linter.transform_conanfile,
linter.transform_imports
py-version=3.6
recursive=no
suggestion-mode=yes
unsafe-load-any-extension=no
[MESSAGES CONTROL]
disable=fixme,
line-too-long,
missing-module-docstring,
missing-function-docstring,
missing-class-docstring,
invalid-name,
wrong-import-order, # TODO: Remove
import-outside-toplevel # TODO: Remove
enable=conan-test-no-name,
conan-import-conanfile
[REPORTS]
evaluation=max(0, 0 if fatal else 10.0 - ((float(5 * error) / statement) * 10))
output-format=text
reports=no
score=no