Ask HN: eslint equivalent for C 5 points by peter-m80 4y ago ↗ HN What is the "industry standard" tool for linting and enforce code style in C?
[–] thesuperbigfrog 4y ago ↗ "lint" and "indent" were the originals.https://en.wikipedia.org/wiki/List_of_tools_for_static_code_... gives links to modern static analysis tools.
[–] tacostakohashi 4y ago ↗ clang-tidy / clang-formatto a large extent, lint came from an era when compilers were primitive, these days you should mostly look towards picking and choosing the appropriate compiler warnings.
2 comments
[ 3.0 ms ] story [ 16.8 ms ] threadhttps://en.wikipedia.org/wiki/List_of_tools_for_static_code_... gives links to modern static analysis tools.
to a large extent, lint came from an era when compilers were primitive, these days you should mostly look towards picking and choosing the appropriate compiler warnings.