blob: d1ffa2dba21df4a944dd36682ac83f830acd60df (
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();
}
|