summaryrefslogtreecommitdiff
path: root/src/content.rs
blob: 9c11dd600a8d970e3b1567cf44c71414858ab2a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
pub fn create_gitignore_file() -> String {
		return
r#"# Godot-specific ignores
.import/
export.cfg
export_presets.cfg

# Imported translations (automatically generated from CSV files)
*.translation

# Mono-specific ignores
.mono/
data_*/

# Glam-specific ignores
.glam.d/"#.to_string();
}

pub fn create_gdignore_file() -> String {
		return
r#"# Glam-specific ignores
.glam.d/"#.to_string();
}

pub fn create_glam_file() -> String {
		return
r#"{
    "packages" : {
    }
}
"#.to_string();
}