Added some more config files

This commit is contained in:
Eric Renfro 2024-03-15 17:28:40 -04:00
parent 8ed070f777
commit 0f1aabf380
Signed by: psi-jack
SSH Key Fingerprint: SHA256:1TKB8Z257L8EHK8GWNxKgMhD8a+FAR+f+j3nnlcuNVM
2 changed files with 37 additions and 0 deletions

13
.curlrc Normal file
View File

@ -0,0 +1,13 @@
# Disguise as FF on macOS 11.2
user-agent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 11.2; rv:86.0) Gecko/20100101 Firefox/86.0"
# When following a redirect, automatically set the previous URL as referer.
referer = ";auto"
# Retrying
connect-timeout = 60
max-time 120
retry 3
retry-delay 0
retry-max-time 60

24
.editorconfig Normal file
View File

@ -0,0 +1,24 @@
; https://editorconfig.org/
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[{Makefile,go.mod,go.sum,*.go,.gitmodules}]
indent_style = tab
indent_size = 4
[*.md]
indent_size = 4
trim_trailing_whitespace = false
[{Dockerfile,*.bash,*.sh}]
indent_style = space
indent_size = 4