Warning, /kdevelop/kdevelop/plugins/clazy/README.txt is written in an unsupported language. File is not indexed.

0001 This plugin integrates Clazy to KDevelop.
0002 
0003 Clazy is a compiler plugin which allows clang to understand Qt semantics. You get more than 50 Qt related compiler warnings, ranging from unneeded memory allocations to misusage of API, including fix-its for automatic refactoring.
0004 
0005 https://commits.kde.org/clazy
0006 
0007 The plugin allows you to check project's code with clazy checker. Runtime dependencies:
0008 
0009 * clazy-standalone (clazy part)
0010 * installed clazy docs (used to building checks DB with errors descriptions)
0011 * make (analysis run, see later)
0012 * compile_commands.json present in project's build directory
0013 
0014 Plugin's GUI provides easy way to clazy configuration, enabling/disabling checks and so on.
0015 
0016 Analysis run done through executing system make command with custom makefile which generates by the plugin in the project's build directory. Such approach allows us to enable/disable parallel code analysis with simple setup of standard make "-j" parameter. Current makefile structure assumes that each checked source file is independent from all others so we can efficiently load all present CPUs - scalability is close to linear.