Add 'docs' and 'assets' to generated gitignore

And also make 'docs' the default folder (instead of doc) to be more aligned with Github's defaults.
This commit is contained in:
KtorZ
2022-12-29 10:54:21 +01:00
parent cce76bbd63
commit ad5a393c4d
2 changed files with 6 additions and 1 deletions

View File

@@ -185,7 +185,12 @@ fn gitignore(root: &Path) -> miette::Result<()> {
gitignore_path,
indoc! {
r#"
# Aiken compilation artifacts
assets/
# Aiken's project working directory
build/
# Aiken's default documentation export
docs/
"#
},
)