Extended Description
I have the following settings for third-party code:
DisableFormat: true
...
clang-format 3.8.0 ignores this option and still sorts includes, although it's expected to be disabled completely and that it won't change files with the above settings.
Now I have to explicitly disable sorting to workaround this issue.
DisableFormat: true
SortIncludes: false
...