1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

add --force-yamllint option to lint

This commit is contained in:
Michael Pöhn 2020-04-25 17:39:23 +02:00
parent b076e8cba7
commit 810a6587df

View File

@ -574,6 +574,9 @@ def main():
common.setup_global_opts(parser)
parser.add_argument("-f", "--format", action="store_true", default=False,
help=_("Also warn about formatting issues, like rewritemeta -l"))
parser.add_argument('--force-yamllint', action="store_true", default=False,
help=_("When linting the entire repository yamllint is disabled by default. "
"This option forces yamllint regardless."))
parser.add_argument("appid", nargs='*', help=_("applicationId in the form APPID"))
metadata.add_metadata_arguments(parser)
options = parser.parse_args()
@ -601,7 +604,7 @@ def main():
continue
# only run yamllint when linting individual apps.
if len(options.appid) > 0:
if len(options.appid) > 0 or options.force_yamllint:
# run yamllint on app metadata
ymlpath = os.path.join('metadata', appid + '.yml')