在 C++ 代码中使用 clang-format 工具

    强烈建议在发起请求之前格式化已更改的 C++ 代码,这将节省您和审阅者的时间.

    To automatically format a file according to Electron C++ code style, run clang-format -i path/to/electron/file.cc. It should work on macOS/Linux/Windows.

    1. 在 Electron 存储库中更改代码.
    2. 运行 git-clang-format, 然后你将可能会看到修改后的 your_changed_file.cc, 这些修改是从 clang-format 生成的.
    3. 运行 , 并提交你的修改.

    If you want to format the changed code on your latest git commit (HEAD), you can run git-clang-format HEAD~1. See git-clang-format -h for more details.