Move .h files before .cpp files in GitHub PR reviews (https://github.com/71/repo/pull/1/files).
javascript:(function()%7B(()%20%3D%3E%20%7B%0A%20%20const%20showBefore%20%3D%20%5B%0A%20%20%20%20%5B%2F%5C.(h%7Chh%7Chpp%7Ch%5C%2B%5C%2B)%24%2F%2C%20%2F%5C.(c%7Ccc%7Ccpp%7Cc%5C%2B%5C%2B)%24%2F%5D%2C%0A%20%20%5D%3B%0A%20%20const%20maybeMoveBefore%20%3D%20(li1%2C%20li2%2C%20getPath)%20%3D%3E%20%7B%0A%20%20%20%20let%20path1%2C%20path2%2C%20base1%2C%20base2%3B%0A%20%20%20%20if%20(!(path1%20%3D%20getPath(li1))%20%7C%7C%20!(path2%20%3D%20getPath(li2)))%20return%3B%0A%0A%20%20%20%20for%20(const%20%5Bpattern1%2C%20pattern2%5D%20of%20showBefore)%20%7B%0A%20%20%20%20%20%20if%20((base1%20%3D%20path1.replace(pattern1%2C%20%22%22))%20!%3D%3D%20path1%20%26%26%0A%20%20%20%20%20%20%20%20%20%20(base2%20%3D%20path2.replace(pattern2%2C%20%22%22))%20!%3D%3D%20path2%20%26%26%0A%20%20%20%20%20%20%20%20%20%20base1%20%3D%3D%3D%20base2)%20%7B%0A%20%20%20%20%20%20%20%20return%20li2.before(li1)%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%2