ci: format ./twitch-eventsub-ws (#6647)
This commit is contained in:
@@ -28,7 +28,7 @@ jobs:
|
|||||||
- name: Check formatting
|
- name: Check formatting
|
||||||
uses: DoozyX/clang-format-lint-action@v0.20
|
uses: DoozyX/clang-format-lint-action@v0.20
|
||||||
with:
|
with:
|
||||||
source: "./src ./tests/src ./benchmarks/src ./mocks/include"
|
source: "./src ./tests/src ./benchmarks/src ./mocks/include ./lib/twitch-eventsub-ws/include ./lib/twitch-eventsub-ws/src"
|
||||||
extensions: "hpp,cpp"
|
extensions: "hpp,cpp"
|
||||||
clangFormatVersion: 19
|
clangFormatVersion: 19
|
||||||
|
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ def main():
|
|||||||
|
|
||||||
log.debug(f"{header_path}: definition={def_path}, implementation={source_path}")
|
log.debug(f"{header_path}: definition={def_path}, implementation={source_path}")
|
||||||
|
|
||||||
(definition, implementation) = generate(header_path, args.includes)
|
(definition, implementation) = generate(header_path, source_path, args.includes)
|
||||||
|
|
||||||
# ensure directories are created
|
# ensure directories are created
|
||||||
Path(def_path).parent.mkdir(parents=True, exist_ok=True)
|
Path(def_path).parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
|||||||
@@ -4,8 +4,10 @@ import subprocess
|
|||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
def format_code(code: str) -> str:
|
def format_code(filename: str, code: str) -> str:
|
||||||
proc = subprocess.Popen(["clang-format", "-"], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
proc = subprocess.Popen(
|
||||||
|
["clang-format", "--assume-filename", filename, "-"], stdin=subprocess.PIPE, stdout=subprocess.PIPE
|
||||||
|
)
|
||||||
outs, errs = proc.communicate(input=code.encode(), timeout=2)
|
outs, errs = proc.communicate(input=code.encode(), timeout=2)
|
||||||
if errs is not None:
|
if errs is not None:
|
||||||
log.warning(f"Error formatting code: {errs.decode()}")
|
log.warning(f"Error formatting code: {errs.decode()}")
|
||||||
|
|||||||
@@ -44,14 +44,16 @@ def _get_relative_header_path(header_path: str) -> str:
|
|||||||
return Path(header_path).relative_to(root_path).as_posix()
|
return Path(header_path).relative_to(root_path).as_posix()
|
||||||
|
|
||||||
|
|
||||||
def generate(header_path: str, additional_includes: list[str] = []) -> Tuple[str, str]:
|
def generate(header_path: str, source_path: str, additional_includes: list[str] = []) -> Tuple[str, str]:
|
||||||
structs = build_structs(header_path, additional_includes)
|
structs = build_structs(header_path, additional_includes)
|
||||||
|
|
||||||
rel_header_path = _get_relative_header_path(header_path)
|
rel_header_path = _get_relative_header_path(header_path)
|
||||||
|
|
||||||
log.debug("Generate & format definitions")
|
log.debug("Generate & format definitions")
|
||||||
definitions = format_code("\n\n".join([struct.try_value_to_definition(env) for struct in structs]))
|
# Technically the definitions we save will be saved in an .inc file, but for the purpose of formatting the code we can assume it's the real header file
|
||||||
|
definitions = format_code(header_path, "\n\n".join([struct.try_value_to_definition(env) for struct in structs]))
|
||||||
|
|
||||||
log.debug("Generate & format implementations")
|
log.debug("Generate & format implementations")
|
||||||
implementations = format_code(_generate_implementation(rel_header_path, structs))
|
implementations = format_code(source_path, _generate_implementation(rel_header_path, structs))
|
||||||
|
|
||||||
return (definitions, implementations)
|
return (definitions, implementations)
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/messages/metadata.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/messages/metadata.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/automod-message-hold-v2.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/automod-message-hold-v2.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/automod-message-update-v2.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/automod-message-update-v2.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/automod-message.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/automod-message.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/channel-ban-v1.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/channel-ban-v1.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/channel-chat-message-v1.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/channel-chat-message-v1.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/channel-chat-notification-v1.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/channel-chat-notification-v1.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/channel-chat-user-message-hold-v1.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/channel-chat-user-message-hold-v1.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
+2
-1
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/channel-chat-user-message-update-v1.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/channel-chat-user-message-update-v1.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/channel-moderate-v2.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/channel-moderate-v2.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
+2
-1
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/channel-suspicious-user-message-v1.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/channel-suspicious-user-message-v1.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/channel-suspicious-user-update-v1.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/channel-suspicious-user-update-v1.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/channel-update-v1.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/channel-update-v1.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/session-welcome.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/session-welcome.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/stream-offline-v1.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/stream-offline-v1.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/stream-online-v1.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/stream-online-v1.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/structured-message.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/structured-message.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/subscription.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/subscription.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// WARNING: This file is automatically generated. Any changes will be lost.
|
// WARNING: This file is automatically generated. Any changes will be lost.
|
||||||
|
#include "twitch-eventsub-ws/payloads/suspicious-users.hpp"
|
||||||
|
|
||||||
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/chrono.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/detail/errors.hpp"
|
#include "twitch-eventsub-ws/detail/errors.hpp"
|
||||||
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
#include "twitch-eventsub-ws/detail/variant.hpp" // IWYU pragma: keep
|
||||||
#include "twitch-eventsub-ws/payloads/suspicious-users.hpp"
|
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
|
|
||||||
|
|||||||
@@ -17,6 +17,8 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|||||||
-regex '\./src/.*\.\(hpp\|cpp\)' -o \
|
-regex '\./src/.*\.\(hpp\|cpp\)' -o \
|
||||||
-regex '\./tests/src/.*\.\(hpp\|cpp\)' -o \
|
-regex '\./tests/src/.*\.\(hpp\|cpp\)' -o \
|
||||||
-regex '\./benchmarks/src/.*\.\(hpp\|cpp\)' -o \
|
-regex '\./benchmarks/src/.*\.\(hpp\|cpp\)' -o \
|
||||||
|
-regex '\./lib/twitch-eventsub-ws/include/.*\.\(hpp\|cpp\)' -o \
|
||||||
|
-regex '\./lib/twitch-eventsub-ws/src/.*\.\(hpp\|cpp\)' -o \
|
||||||
-regex '\./mocks/include/.*\.\(hpp\|cpp\)' \
|
-regex '\./mocks/include/.*\.\(hpp\|cpp\)' \
|
||||||
\) | parallel --verbose --jobs "$NUM_FORMAT_JOBS" clang-format -i
|
\) | parallel --verbose --jobs "$NUM_FORMAT_JOBS" clang-format -i
|
||||||
else
|
else
|
||||||
@@ -24,6 +26,8 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|||||||
-regex '\./src/.*\.\(hpp\|cpp\)' -o \
|
-regex '\./src/.*\.\(hpp\|cpp\)' -o \
|
||||||
-regex '\./tests/src/.*\.\(hpp\|cpp\)' -o \
|
-regex '\./tests/src/.*\.\(hpp\|cpp\)' -o \
|
||||||
-regex '\./benchmarks/src/.*\.\(hpp\|cpp\)' -o \
|
-regex '\./benchmarks/src/.*\.\(hpp\|cpp\)' -o \
|
||||||
|
-regex '\./lib/twitch-eventsub-ws/include/.*\.\(hpp\|cpp\)' -o \
|
||||||
|
-regex '\./lib/twitch-eventsub-ws/src/.*\.\(hpp\|cpp\)' -o \
|
||||||
-regex '\./mocks/include/.*\.\(hpp\|cpp\)' \
|
-regex '\./mocks/include/.*\.\(hpp\|cpp\)' \
|
||||||
\) -exec clang-format -i {} \;
|
\) -exec clang-format -i {} \;
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user