Skip to content

Commit

Permalink
Change bazel_clang_tidy to a dev dependency
Browse files Browse the repository at this point in the history
GitOrigin-RevId: f827b04d9b51066be53e86c832657872e5cba4dc
  • Loading branch information
Vertexwahn committed Jan 19, 2025
1 parent dc86456 commit b0bf582
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions devertexwahn/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ module(

bazel_dep(name = "abseil-cpp", version = "20240722.0.bcr.2")
bazel_dep(name = "apple_support", version = "1.17.1")
bazel_dep(name = "bazel_clang_tidy")
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "boost.algorithm", version = "1.83.0.bcr.1")
bazel_dep(name = "boost.asio", version = "1.83.0.bcr.2")
Expand Down Expand Up @@ -49,6 +48,7 @@ bazel_dep(name = "yaml-cpp", version = "0.8.0")
bazel_dep(name = "zlib", version = "1.3.1.bcr.4")

bazel_dep(name = "aspect_rules_lint", version = "1.0.3", dev_dependency = True)
bazel_dep(name = "bazel_clang_tidy", dev_dependency = True)
bazel_dep(name = "catch2", version = "3.8.0", dev_dependency = True)
bazel_dep(name = "google_benchmark", version = "1.9.1", dev_dependency = True)
bazel_dep(name = "googletest", version = "1.15.2", dev_dependency = True)
Expand All @@ -71,13 +71,13 @@ local_path_override(
)

local_path_override(
module_name = "catch2",
path = "../third_party/Catch2",
module_name = "bazel_clang_tidy",
path = "../third_party/bazel_clang_tidy",
)

local_path_override(
module_name = "bazel_clang_tidy",
path = "../third_party/bazel_clang_tidy",
module_name = "catch2",
path = "../third_party/Catch2",
)

local_path_override(
Expand Down

0 comments on commit b0bf582

Please sign in to comment.