diff --git a/rustfmt.toml b/rustfmt.toml index ab63a20..7bbd24c 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -1,6 +1,5 @@ use_try_shorthand = true use_field_init_shorthand = true -use_small_heuristics = "Max" version = "Two" error_on_line_overflow = true diff --git a/src/main.rs b/src/main.rs index 7b83dba..2daf2bf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -12,5 +12,8 @@ use bevy::prelude::*; use border_wars::render::RenderPlugin; fn main() { - App::new().add_plugins(DefaultPlugins).add_plugin(RenderPlugin).run() + App::new() + .add_plugins(DefaultPlugins) + .add_plugin(RenderPlugin) + .run() }