| 1 |
[pkglint] |
| 2 |
|
| 3 |
# Whether to show the progress tracker during lint runs |
| 4 |
use_progress_tracker = True |
| 5 |
|
| 6 |
# The default log level at which to start emitting messages |
| 7 |
# log levels are, in order of increasing priority, |
| 8 |
# DEBUG, INFO, WARNING, ERROR, CRITICAL |
| 9 |
log_level = INFO |
| 10 |
|
| 11 |
# Perform checks that may only make sense for published packages. |
| 12 |
do_pub_checks = True |
| 13 |
|
| 14 |
# pkglint.ext.* keys indicate python modules that should be |
| 15 |
# automatically loaded and check methods exectuted during |
| 16 |
# each lint run. |
| 17 |
|
| 18 |
# key = python package implementing those checks |
| 19 |
# pkglint.ext.other = org.foo.barcheck |
| 20 |
|
| 21 |
# List modules or methods which should be excluded from |
| 22 |
# execution during each lint run. |
| 23 |
pkglint.exclude = pkg.lint.opensolaris |
| 24 |
|
| 25 |
# The version pattern we use when searching for manifests |
| 26 |
# for a given build (only when using the -b flag to pkglint) |
| 27 |
version.pattern = *,5.11-0. |
| 28 |
|
| 29 |
# The path used for info.classification attribute checks |
| 30 |
info_classification_path = /usr/share/lib/pkg/opensolaris.org.sections |
| 31 |
|
| 32 |
# Whether to ignore publisher differences when comparing package versions |
| 33 |
ignore_different_publishers = True |
| 34 |
|
| 35 |
# |
| 36 |
# The following are parameters that are passed to individual lint checks |
| 37 |
# |
| 38 |
|
| 39 |
# dependencies which may be missing at runtime |
| 40 |
pkglint.action005.1.missing-deps = |
| 41 |
|
| 42 |
# whether to log INFO messages when a pkg.linted action/manifest trips a check |
| 43 |
pkglint001.5.report-linted = True |
| 44 |
|
| 45 |
pkglint.ext.content = pkglint.opencsw |