From 6423baebd92e45c9be85157c443dff42e65d8d14 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Fri, 1 Sep 2023 00:00:00 +0000 Subject: refactor: rebuild app skeleton Create skeleton for a complete rebuild of the prototype as a production ready product. Includes design patterns for: - dependency injection - unit testing with dependency mocking - integration testing - error handling - config storage BREAKING-CHANGE: ground-up redesign with incompatible protocol standards --- rustfmt.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 rustfmt.toml (limited to 'rustfmt.toml') diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..bcf7279 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1,13 @@ +unstable_features = true +version = "Two" + +# Imports +imports_granularity = "Crate" +group_imports = "StdExternalCrate" + +# Consistency +newline_style = "Unix" + +# Comments +wrap_comments = true +format_code_in_doc_comments = true -- cgit v1.2.3