Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,10 @@ sh_test(
"tclint.toml",
"//bazel:tclint",
],
tags = ["local"],
tags = [
"local",
"manual",
],
)

# --- TCL formatting check (tclfmt --check) --------------------------------
Expand All @@ -569,7 +572,10 @@ sh_test(
"tclint.toml",
"//bazel:tclfmt",
],
tags = ["local"],
tags = [
"local",
"manual",
],
)

# --- TCL auto-format only (tclfmt --in-place) -----------------------------
Expand All @@ -596,7 +602,10 @@ sh_test(
"MODULE.bazel",
"@buildifier_prebuilt//:buildifier",
],
tags = ["local"],
tags = [
"local",
"manual",
],
)

# --- Bazel formatting check (buildifier -mode=check -lint=off) ------------
Expand All @@ -610,7 +619,10 @@ sh_test(
"MODULE.bazel",
"@buildifier_prebuilt//:buildifier",
],
tags = ["local"],
tags = [
"local",
"manual",
],
)

# --- Bazel auto-format only (buildifier -mode=fix) ------------------------
Expand All @@ -629,6 +641,7 @@ sh_binary(

test_suite(
name = "lint_test",
tags = ["manual"],
tests = [
":fmt_bzl_test",
":fmt_tcl_test",
Expand Down
1 change: 1 addition & 0 deletions docs/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,6 @@ man_pages(
"//docs/src/scripts:manpage.py",
"//docs/src/scripts:extract_utils.py",
],
tags = ["manual"],
visibility = ["//visibility:public"],
)
Loading