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:
parent
3990ab5eb9
commit
49e5086390
|
|
@ -7,3 +7,5 @@
|
|||
.DS_Store
|
||||
process.yml
|
||||
/.vscode
|
||||
/*.toml
|
||||
/*.conf
|
||||
|
|
|
|||
Loading…
Reference in New Issue