Warning, /sdk/clazy/docs/checks/README-thread-with-slots.md is written in an unsupported language. File is not indexed.

0001 # thread-with-slots
0002 
0003 slots in a `QThread` derived class are usually a code smell, because
0004 they'll run in the thread where the `QThread` `QObject` lives and not in
0005 the thread itself.
0006 
0007 Disabled by default since it's very hard to avoid for false-positives. You'll
0008 have to explicitly enable it and check case by case for races.