-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathpyrightlint.py
executable file
·100 lines (68 loc) · 2.92 KB
/
pyrightlint.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!/usr/bin/env python3
"""Script to run pyright linter on Python files."""
import argparse
import logging
import os
import sys
from typing import List
import structlog
# Configure the base directory for the MongoDB source.
MONGO_DIR = os.path.dirname(os.path.dirname(os.path.abspath(os.path.realpath(__file__))))
# Get relative imports to work when the package is not installed on the PYTHONPATH.
if __name__ == "__main__" and __package__ is None:
sys.path.append(MONGO_DIR)
# pylint: disable=wrong-import-position
from buildscripts.linter import pyrightlinter, runner
from buildscripts.linter.filediff import gather_changed_files_for_lint
# pylint: enable=wrong-import-position
def is_interesting_file(filename: str) -> bool:
"""Return true if this file should be checked."""
return filename.endswith(".py")
def lint(paths: List[str]):
"""Lint specified paths (files or directories) using Pyright."""
lint_runner = runner.LintRunner()
pyright = pyrightlinter.PyrightLinter()
linter_instance = runner.find_linters([pyright], {})
if not linter_instance:
print("ERROR: Pyright linter not found or failed to initialize")
sys.exit(1)
lint_success = lint_runner.run_lint(linter_instance[0], paths, MONGO_DIR)
if not lint_success:
print("ERROR: Code Style does not match coding style")
sys.exit(1)
def lint_git_diff():
"""Lint files that have changed based on git diff."""
files = gather_changed_files_for_lint(is_interesting_file)
if files:
lint(files)
else:
print("No files to lint.")
def lint_all():
"""Lint all Python files in the repository."""
lint([MONGO_DIR])
def main():
"""Main entry point for the Pyright linter script."""
parser = argparse.ArgumentParser(description="Pyright Lint frontend.")
parser.add_argument("-v", "--verbose", action="store_true", help="Enable verbose logging")
sub = parser.add_subparsers(title="Linter subcommands", help="sub-command help")
parser_lint = sub.add_parser(
"lint",
help="Lint paths (files or directories) and exit with nonzero status if any violations are found",
)
parser_lint.add_argument("paths", nargs="*", help="Paths (files or directories) to check")
parser_lint.set_defaults(func=lint)
parser_git_diff = sub.add_parser("git-diff", help="Lint files changed in git")
parser_git_diff.set_defaults(func=lambda _: lint_git_diff())
parser_all = sub.add_parser("lint-all", help="Lint all files")
parser_all.set_defaults(func=lambda _: lint_all())
# No args given? Fall back to usage screen:
if len(sys.argv) == 1:
parser.print_help()
return
args = parser.parse_args()
if args.verbose:
logging.basicConfig(level=logging.DEBUG)
structlog.configure(logger_factory=structlog.stdlib.LoggerFactory())
args.func(args.paths if hasattr(args, "paths") else [])
if __name__ == "__main__":
main()