1

Can you please help me with how to check CPP files in a project for functions exceeding 'n' number of lines using Clang-Tidy?

Adrian Mole
  • 49,934
  • 160
  • 51
  • 83
Pshah S
  • 11
  • 1

1 Answers1

1

You can use the readability-function-size check and set the LineThreshold parameter to your n value.

Adrian Mole
  • 49,934
  • 160
  • 51
  • 83