-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdefs.bzl
More file actions
57 lines (47 loc) · 1.89 KB
/
defs.bzl
File metadata and controls
57 lines (47 loc) · 1.89 KB
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
# *******************************************************************************
# Copyright (c) 2025 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
"""Unified entrypoint for score_tooling Bazel macros & rules."""
# --- cli_helper ---
load("//cli_helper:cli_helper.bzl", _cli_helper = "cli_helper")
# --- coverage ---
load("//coverage:coverage.bzl", _rust_coverage_report = "rust_coverage_report")
# --- cr_checker ---
load("//cr_checker:cr_checker.bzl", _copyright_checker = "copyright_checker")
# --- dash ---
load("//dash:dash.bzl", _dash_license_checker = "dash_license_checker")
# --- format_checker ---
load("//format_checker:macros.bzl", _use_format_targets = "use_format_targets")
# --- python_basics ---
load(
"//python_basics:defs.bzl",
_score_py_pytest = "score_py_pytest",
_score_virtualenv = "score_virtualenv",
)
# --- starpls ---
load("//starpls:starpls.bzl", _setup_starpls = "setup_starpls")
# --- ai_checker ---
load(
"//validation/ai_checker:ai_checker.bzl",
_architecture_ai_test = "architecture_ai_test",
_trlc_requirements_ai_test = "trlc_requirements_ai_test",
)
score_virtualenv = _score_virtualenv
score_py_pytest = _score_py_pytest
dash_license_checker = _dash_license_checker
copyright_checker = _copyright_checker
cli_helper = _cli_helper
use_format_targets = _use_format_targets
setup_starpls = _setup_starpls
rust_coverage_report = _rust_coverage_report
trlc_requirements_ai_test = _trlc_requirements_ai_test
architecture_ai_test = _architecture_ai_test