{"id":44509015,"url":"https://github.com/eclipse-score/tooling","last_synced_at":"2026-04-02T23:56:39.499Z","repository":{"id":279423703,"uuid":"935900377","full_name":"eclipse-score/tooling","owner":"eclipse-score","description":"Tooling for Eclipse S-CORE","archived":false,"fork":false,"pushed_at":"2026-02-12T17:42:54.000Z","size":14264,"stargazers_count":5,"open_issues_count":17,"forks_count":16,"subscribers_count":6,"default_branch":"main","last_synced_at":"2026-02-13T01:14:20.026Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Starlark","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eclipse-score.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-20T07:49:46.000Z","updated_at":"2026-02-04T16:37:47.000Z","dependencies_parsed_at":"2025-04-01T17:28:24.051Z","dependency_job_id":"74f617d8-c7b7-4055-827e-9869ba20e617","html_url":"https://github.com/eclipse-score/tooling","commit_stats":null,"previous_names":["eclipse-score/tooling"],"tags_count":29,"template":false,"template_full_name":null,"purl":"pkg:github/eclipse-score/tooling","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Ftooling","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Ftooling/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Ftooling/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Ftooling/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eclipse-score","download_url":"https://codeload.github.com/eclipse-score/tooling/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Ftooling/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29406731,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T06:24:03.484Z","status":"ssl_error","status_checked_at":"2026-02-13T06:23:12.830Z","response_time":78,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-13T12:57:56.699Z","updated_at":"2026-04-02T23:56:39.493Z","avatar_url":"https://github.com/eclipse-score.png","language":"Starlark","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nCopyright (c) 2026 Contributors to the Eclipse Foundation\n\nSPDX-License-Identifier: Apache-2.0\n--\u003e\n\n# Score Tooling\n\nA unified Bazel module containing development tools and utilities for building, testing, and maintaining code quality.\n\n## Quick Start\n\nAdd this module to your `MODULE.bazel`:\n\n```starlark\nbazel_dep(name = \"score_tooling\", version = \"1.0.0\")\n```\n\n## Available Tools\n\nEach tool maintains its own documentation and examples in their respective subdirectories.\nSee the individual README files for detailed usage instructions and configuration options.\n\n| Tool | Description | Documentation |\n|------|-------------|---------------|\n| **cli_helper** | Command-line interface utilities | [README](cli_helper/README.md) |\n| **cr_checker** | Code review and compliance checking | [README](cr_checker/README.md) |\n| **dash** | Eclipse Dash license scanning | [README](dash/README.md) |\n| **format_checker** | Code formatting validation | [README](format_checker/README.md) |\n| **python_basics** | Python development utilities and testing | [README](python_basics/README.md) |\n| **starpls** | Starlark language server support | [README](starpls/README.md) |\n| **tools** | Formatters \u0026 Linters | [README](tools/README.md) |\n| **coverage** | Ferrocene Rust coverage workflow | [README](coverage/README.md) |\n\n## Usage Examples\n\nLoad tools in your `BUILD` files:\n\n```starlark\nload(\"@score_tooling//:defs.bzl\", \"score_py_pytest\")\nload(\"@score_tooling//:defs.bzl\", \"cli_tool\")\nload(\"@score_tooling//coverage:coverage.bzl\", \"rust_coverage_report\")\n```\n\nCreate a repo-local coverage target:\n\n```starlark\nrust_coverage_report(\n    name = \"rust_coverage\",\n    bazel_configs = [\n        \"ferrocene-x86_64-linux\",\n        \"ferrocene-coverage\",\n    ],\n    query = 'kind(\"rust_test\", //...)',\n    min_line_coverage = \"80\",\n)\n```\n\nThen run:\n\n```bash\nbazel run //:rust_coverage -- --min-line-coverage 80\n```\n\n## Upgrading from separate MODULES\n\nIf you are still using separate module imports and want to upgrade to the new version.\nHere are two examples to showcase how to do this.\n\n```\nload(\"@score_python_basics//:defs.bzl\", \"score_py_pytest\") =\u003e load(\"@score_tooling//:defs.bzl\", \"score_py_pytest\")\nload(\"@score_cr_checker//:cr_checker.bzl\", \"copyright_checker\") =\u003e load(\"@score_tooling//:defs.bzl\", \"copyright_checker\")\n```\n\nAll things inside of 'tooling' can now be imported from `@score_tooling//:defs.bzl`.\nThe available import targets are:\n\n- score_virtualenv\n- score_py_pytest\n- dash_license_checker\n- copyright_checker\n- cli_helper\n- use_format_targets\n- setup_starpls\n- rust_coverage_report\n\n## Format the tooling repository\n\n```bash\nbazel run //:format.fix\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-score%2Ftooling","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feclipse-score%2Ftooling","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-score%2Ftooling/lists"}