Skip to content

Code quality tooling (warnings + static analysis) #28

@alexgubanow

Description

@alexgubanow

Address OpenSSF Best Practices quality-related recommendations:

  1. Compiler warnings
  • Enable sane compiler warnings for C++ builds (e.g. -Wall -Wextra -Wpedantic)
  • Enable Java compiler linting (e.g. -Xlint) via Maven
  • Do not require warnings-as-errors unless intentionally chosen
  1. Static analysis
  • Introduce lightweight static analysis tools:
  • Java: SpotBugs / PMD / Checkstyle (choose one)
  • C++: cppcheck or clang-tidy (choose one)
  • CI integration is optional; best-effort usage is acceptable.
  1. Documentation
  • Add a short QUALITY.md (or equivalent) documenting:
  • enabled compiler warnings
  • static analysis tools used
  • how to run them locally
  • best-effort nature (no SLA guarantees)

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or requesthelp wantedExtra attention is needed

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions