Skip to content

googleapis/api-linter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4a44b59 · Feb 20, 2025
Jan 24, 2025
Feb 20, 2025
Feb 14, 2025
Feb 20, 2025
Apr 12, 2024
Nov 5, 2024
Feb 19, 2025
Aug 6, 2019
Oct 24, 2022
Dec 2, 2019
Aug 2, 2023
Feb 20, 2025
Feb 20, 2025
Apr 5, 2021
Jul 16, 2021
May 13, 2019
Aug 24, 2023
Apr 27, 2021
Jan 27, 2025
Jan 27, 2025

Google API Linter

ci latest release go version

The API linter provides real-time checks for compliance with many of Google's API standards, documented using API Improvement Proposals. It operates on API surfaces defined in protocol buffers.

It identifies common mistakes and inconsistencies in API surfaces:

// Incorrect.
message GetBookRequest {
  // This is wrong; it should be spelled `name`.
  string book = 1;
}

When able, it also offers a suggestion for the correct fix.

Read more ≫

Versioning

The Google API linter does not follow semantic versioning. Semantic versioning is challenging for a tool like a linter because the addition or correction of virtually any rule is "breaking" (in the sense that a file that previously reported no problems may now do so).

Therefore, the version numbers refer to the linter's core interface. In general:

  • Releases with only documentation, chores, dependency upgrades, and/or bugfixes are patch releases.
  • Releases with new rules (or potentially removed rules) are minor releases.
  • Releases with core interface alterations are major releases. This could include changes to the internal Go interface or the CLI user interface.

Note: Releases that increment the Go version will be considered minor.

This is an attempt to follow the spirit of semantic versioning while still being useful.

Contributing

If you are interested in contributing to the API linter, please review the contributing guide to learn more.

License

This software is made available under the Apache 2.0 license.