Centralized C++ quality tool policies for Eclipse S-CORE, providing sanitizer configurations and clang-tidy integration reusable across all S-CORE modules (logging, communication, baselibs, etc.).
Planned: clang-format, code coverage policies.
sanitizers/— ASan/UBSan/LSan/TSan Bazelcc_features, ready-to-use--config=aliases, suppression files, andtarget_compatible_withconstraints.clang_tidy/— centralized.clang-tidybaseline (conservative, tailorable per module) and a--config=clang-tidyBazel integration.
ASan, UBSan, LSan, and TSan as independently configurable Bazel cc_features, with
ready-to-use --config= aliases (asan, ubsan, lsan, tsan, asan_ubsan_lsan,
tsan_ubsan), suppression files for known false positives, and target_compatible_with
constraints for skipping or restricting tests under specific sanitizers.
bazel test --config=asan_ubsan_lsan //... # recommended default for CISee sanitizers/README.md for setup, the full config/constraint
reference, and the v0.x migration guide.
Centralized .clang-tidy check set and a --config=clang-tidy Bazel integration via
aspect_rules_lint.
See clang_tidy/README.md for the 8-step setup guide.
cd tests
bazel test --config=asan_ubsan_lsan //...
bazel test --config=tsan //...
bazel test --config=clang-tidy //...See CONTRIBUTION.md for guidelines. All commits must follow Eclipse Foundation commit rules. Contributors must sign the ECA and DCO.
Apache License 2.0 — see LICENSE for details.