blob: 0717b998b968ee39a149c6b9bd7d8b6ad3b123d9 [file] [log] [blame]
# Copyright 2019 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
"""Registers the presubmit plugin for Pigweed."""
try:
import pw_cli.plugins
from pw_presubmit import format_code, pigweed_presubmit
pw_cli.plugins.register(
'presubmit',
pigweed_presubmit.main,
pigweed_presubmit.__doc__.splitlines()[0].rstrip('.'),
pigweed_presubmit.argument_parser,
)
pw_cli.plugins.register(
'format',
format_code.main,
format_code.__doc__.splitlines()[0].rstrip('.'),
format_code.argument_parser,
)
except ImportError:
pass