add end-of-file-fixer
This commit is contained in:
@@ -3,11 +3,13 @@ repos:
|
|||||||
rev: 3e8a8703264a2f4a69428a0aa4dcb512790b2c8c # frozen: v6.0.0
|
rev: 3e8a8703264a2f4a69428a0aa4dcb512790b2c8c # frozen: v6.0.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: trailing-whitespace
|
- id: trailing-whitespace
|
||||||
|
- id: end-of-file-fixer
|
||||||
|
exclude: ".*third_party/.*"
|
||||||
- id: check-added-large-files
|
- id: check-added-large-files
|
||||||
- id: check-merge-conflict
|
- id: check-merge-conflict
|
||||||
|
|
||||||
- repo: https://github.com/pre-commit/mirrors-clang-format
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
||||||
rev: 182152eb8c5ce1cf5299b956b04392c86bd8a126 # frozen: v20.1.8
|
rev: 86fdcc9bd34d6afbbd29358b97436c8ffe3aa3b2 # frozen: v21.1.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: clang-format
|
- id: clang-format
|
||||||
exclude: ".*third_party/.*"
|
exclude: ".*third_party/.*"
|
||||||
|
|||||||
@@ -140,4 +140,4 @@ std::string generate_large_json(int num_operations) {
|
|||||||
return json;
|
return json;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace weaseldb::test_data
|
} // namespace weaseldb::test_data
|
||||||
|
|||||||
@@ -55,4 +55,4 @@ extern const std::string COMPLEX_JSON;
|
|||||||
*/
|
*/
|
||||||
std::string generate_large_json(int num_operations);
|
std::string generate_large_json(int num_operations);
|
||||||
|
|
||||||
} // namespace weaseldb::test_data
|
} // namespace weaseldb::test_data
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
|
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
|
||||||
#include <doctest/doctest.h>
|
#include <doctest/doctest.h>
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
#define ANKERL_NANOBENCH_IMPLEMENT
|
#define ANKERL_NANOBENCH_IMPLEMENT
|
||||||
#include <nanobench.h>
|
#include <nanobench.h>
|
||||||
|
|||||||
@@ -247,4 +247,4 @@ ParseResult ApiUrlParser::parse(std::string_view method, char *url_data,
|
|||||||
|
|
||||||
result.route = HttpRoute::NotFound;
|
result.route = HttpRoute::NotFound;
|
||||||
return ParseResult::Success;
|
return ParseResult::Success;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -58,4 +58,4 @@ asm(".text\n"
|
|||||||
".size spend_cpu_cycles, spend_cpu_cycles\n");
|
".size spend_cpu_cycles, spend_cpu_cycles\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -43,4 +43,4 @@ public:
|
|||||||
* @return Pointer to JsonToken if found, nullptr if not a known token
|
* @return Pointer to JsonToken if found, nullptr if not a known token
|
||||||
*/
|
*/
|
||||||
static const struct JsonToken *lookup_json_token(const char *str, size_t len);
|
static const struct JsonToken *lookup_json_token(const char *str, size_t len);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -58,4 +58,4 @@ struct ShutdownEntry {
|
|||||||
* Each stage pattern-matches on the variant type to handle appropriately.
|
* Each stage pattern-matches on the variant type to handle appropriately.
|
||||||
*/
|
*/
|
||||||
using PipelineEntry =
|
using PipelineEntry =
|
||||||
std::variant<CommitEntry, StatusEntry, HealthCheckEntry, ShutdownEntry>;
|
std::variant<CommitEntry, StatusEntry, HealthCheckEntry, ShutdownEntry>;
|
||||||
|
|||||||
@@ -44,4 +44,4 @@ private:
|
|||||||
unsigned long long last_voluntary_context_switches_ = 0;
|
unsigned long long last_voluntary_context_switches_ = 0;
|
||||||
unsigned long long last_nonvoluntary_context_switches_ = 0;
|
unsigned long long last_nonvoluntary_context_switches_ = 0;
|
||||||
bool start_time_set_ = false;
|
bool start_time_set_ = false;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -40,4 +40,4 @@ private:
|
|||||||
std::string decode_base64(const std::string &base64_str);
|
std::string decode_base64(const std::string &base64_str);
|
||||||
Precondition::Type parse_precondition_type(const std::string &type_str);
|
Precondition::Type parse_precondition_type(const std::string &type_str);
|
||||||
Operation::Type parse_operation_type(const std::string &type_str);
|
Operation::Type parse_operation_type(const std::string &type_str);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -144,4 +144,4 @@ bool ParserComparison::operations_equal(const Operation &op1,
|
|||||||
const Operation &op2) {
|
const Operation &op2) {
|
||||||
return op1.type == op2.type && op1.param1 == op2.param1 &&
|
return op1.type == op2.type && op1.param1 == op2.param1 &&
|
||||||
op1.param2 == op2.param2;
|
op1.param2 == op2.param2;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -71,4 +71,4 @@ private:
|
|||||||
* @return true if equal, false otherwise
|
* @return true if equal, false otherwise
|
||||||
*/
|
*/
|
||||||
static bool operations_equal(const Operation &op1, const Operation &op2);
|
static bool operations_equal(const Operation &op1, const Operation &op2);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -551,4 +551,4 @@ TEST_CASE("ApiUrlParser specific bug reproduction") {
|
|||||||
.empty());
|
.empty());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user