mirror of https://github.com/mongodb/mongo
35 lines
713 B
Python
35 lines
713 B
Python
load("@poetry//:dependencies.bzl", "dependency")
|
|
|
|
py_library(
|
|
name = "linter",
|
|
srcs = [
|
|
"__init__.py",
|
|
"base.py",
|
|
"filediff.py",
|
|
"git.py",
|
|
"git_base.py",
|
|
"mongolint.py",
|
|
"mypy.py",
|
|
"parallel.py",
|
|
"pyrightlinter.py",
|
|
"ruffchecker.py",
|
|
"ruffformatter.py",
|
|
"runner.py",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
dependency(
|
|
"pyright",
|
|
),
|
|
"//buildscripts/patch_builds",
|
|
dependency(
|
|
"structlog",
|
|
group = "evergreen",
|
|
),
|
|
dependency(
|
|
"gitpython",
|
|
group = "evergreen",
|
|
),
|
|
],
|
|
)
|