summaryrefslogtreecommitdiff
path: root/src/content.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/content.rs')
-rw-r--r--src/content.rs15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/content.rs b/src/content.rs
index 94ea18d..b31b033 100644
--- a/src/content.rs
+++ b/src/content.rs
@@ -1,6 +1,5 @@
pub fn create_gitignore_file() -> String {
- return
-r#"# Godot 4+ ignores
+ return r#"# Godot 4+ ignores
.godot/
# Godot 3 ignores
@@ -14,19 +13,19 @@ r#"# Godot 4+ ignores
data_*/
# Glam-specific ignores
-.glam.d/"#.to_string();
+.glam.d/"#
+ .to_string();
}
pub fn create_gdignore_file() -> String {
- return
-r#"# Hide this folder from Godot editor"#.to_string();
+ return r#"# Hide this folder from Godot editor"#.to_string();
}
pub fn create_glam_file() -> String {
- return
-r#"{
+ return r#"{
"packages" : [
]
}
-"#.to_string();
+"#
+ .to_string();
}