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.
This commit is contained in:
Joshua Powers 2021-10-01 15:09:50 -06:00 committed by GitHub
parent 3990ab5eb9
commit 49e5086390
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

2
.gitignore vendored
View File

@ -7,3 +7,5 @@
.DS_Store
process.yml
/.vscode
/*.toml
/*.conf