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

View file

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