Browse Source

chore: Clean up adapt test line endings (#4660)

Lots of the files were using CRLF instead of LF. Mostly my fault cause sometimes I make the files on Windows and VSCode for some reason kept making them with the wrong line endings. Sigh.

Since .txt files typically default to spaces for indentation, I'm also adding an .editorconfig to ensure they use tabs instead
master
Francis Lavoie 3 years ago
committed by GitHub
parent
commit
4b75f3e2f0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      .editorconfig
  2. 6
      caddytest/integration/caddyfile_adapt/sort_directives_within_handle.txt

5
.editorconfig

@ -0,0 +1,5 @@
[*]
end_of_line = lf
[caddytest/integration/caddyfile_adapt/*.txt]
indent_style = tab

6
caddytest/integration/caddyfile_adapt/sort_directives_within_handle.txt

@ -8,9 +8,9 @@
respond "this should be second" respond "this should be second"
} }
} }
handle { handle {
respond "this should be last" respond "this should be last"
} }
} }
---------- ----------
{ {

Loading…
Cancel
Save