lint: Remove custom --no-gitlint option.

zulint already has --skip for this.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2021-03-04 14:03:35 -08:00
parent c4a78d0832
commit 2e3c65a044
2 changed files with 3 additions and 6 deletions

View file

@ -15,7 +15,6 @@ EXCLUDED_FILES = [
def run() -> None: def run() -> None:
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
add_default_linter_arguments(parser) add_default_linter_arguments(parser)
parser.add_argument('--no-gitlint', action='store_true', help='Disable gitlint')
args = parser.parse_args() args = parser.parse_args()
linter_config = LinterConfig(args) linter_config = LinterConfig(args)
@ -27,8 +26,6 @@ def run() -> None:
description="Static type checker for Python (config: mypy.ini)") description="Static type checker for Python (config: mypy.ini)")
linter_config.external_linter('flake8', ['flake8'], ['py'], linter_config.external_linter('flake8', ['flake8'], ['py'],
description="Standard Python linter (config: .flake8)") description="Standard Python linter (config: .flake8)")
if not args.no_gitlint:
linter_config.external_linter('gitlint', ['tools/lint-commits'], linter_config.external_linter('gitlint', ['tools/lint-commits'],
description="Git Lint for commit messages") description="Git Lint for commit messages")

View file

@ -2,5 +2,5 @@
set -ev set -ev
tools/lint --no-gitlint tools/lint --skip=gitlint
tools/run-mypy tools/run-mypy