Skip to content
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ styles/

# Python
.venv
.venv_docs
venv/
__pycache__/
/.coverage
Expand Down
7 changes: 3 additions & 4 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
load("@score_cr_checker//:cr_checker.bzl", "copyright_checker")
load("@score_docs_as_code//:docs.bzl", "docs")
load("@score_tooling//:defs.bzl", "copyright_checker", "use_format_targets")

# *******************************************************************************
# Copyright (c) 2025 Contributors to the Eclipse Foundation
Expand All @@ -25,7 +25,6 @@ load("@score_docs_as_code//:docs.bzl", "docs")
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
load("@score_format_checker//:macros.bzl", "use_format_targets")

package(default_visibility = ["//visibility:public"])

Expand All @@ -44,8 +43,8 @@ copyright_checker(
],
exclude = ["process/trustable/**"],
),
config = "@score_cr_checker//resources:config",
template = "@score_cr_checker//resources:templates",
config = "@score_tooling//cr_checker/resources:config",
template = "@score_tooling//cr_checker/resources:templates",
visibility = ["//visibility:public"],
)

Expand Down
14 changes: 4 additions & 10 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,14 @@ python.toolchain(
use_repo(python)

# Additional Python rules provided by aspect, e.g. an improved version of
bazel_dep(name = "aspect_rules_py", version = "1.4.0")
bazel_dep(name = "aspect_rules_py", version = "1.6.3")
bazel_dep(name = "buildifier_prebuilt", version = "8.2.0.2")

###############################################################################
#
# Generic linting and formatting rules
#
###############################################################################
bazel_dep(name = "aspect_rules_lint", version = "1.4.4")

# Provides, pytest & venv
bazel_dep(name = "score_python_basics", version = "0.3.4")

# Checker rule for CopyRight checks/fixes
bazel_dep(name = "score_cr_checker", version = "0.3.1")
bazel_dep(name = "score_format_checker", version = "0.1.1")
bazel_dep(name = "score_docs_as_code", version = "1.0.2")
bazel_dep(name = "aspect_rules_lint", version = "1.5.3")
bazel_dep(name = "score_tooling", version = "1.0.0")
bazel_dep(name = "score_docs_as_code", version = "1.1.0")
Loading