From 49e50863901354fbc8c66e8f07920beb88bbd2ac Mon Sep 17 00:00:00 2001 From: Joshua Powers Date: Fri, 1 Oct 2021 15:09:50 -0600 Subject: [PATCH] fix: gitignore should ignore .toml/.conf files (#9818) As the application requires a config.toml or config.conf file it makes sense to ignore these types of files rather than having them show up in git status output. While the files are technically in the toml format, we use the .conf extension in our documentation so ignore both. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 7c3fbd21c..614809d06 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,5 @@ .DS_Store process.yml /.vscode +/*.toml +/*.conf