summaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorFrancis Lavoie <lavofr@gmail.com>2022-03-25 00:48:45 -0400
committerGitHub <noreply@github.com>2022-03-24 22:48:45 -0600
commit4b75f3e2f09b77b98783ea4d6602391c7283f984 (patch)
treee7c7ac68516db60cc1c74e6174bb35dc42a86d10 /.editorconfig
parentb8dbecb841bef1f1ec67419b871d23d66af7a3b1 (diff)
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
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig5
1 files changed, 5 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..7134bf7
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,5 @@
+[*]
+end_of_line = lf
+
+[caddytest/integration/caddyfile_adapt/*.txt]
+indent_style = tab \ No newline at end of file