Added some more config files
This commit is contained in:
parent
8ed070f777
commit
0f1aabf380
2 changed files with 37 additions and 0 deletions
13
.curlrc
Normal file
13
.curlrc
Normal 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
24
.editorconfig
Normal 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
|
||||
|
Loading…
Reference in a new issue