diff options
-rw-r--r-- | .editorconfig | 4 | ||||
-rw-r--r-- | .vscode/settings.json | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index 59bb73282..2d527a250 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,6 +1,10 @@ # top-most EditorConfig file root = true +[*] +end_of_line = lf +insert_final_newline = true + # 4 space indentation for Perl files [*.{pl,PL,pm,cgi}] indent_style = space diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..6e0d93ed7 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "files.insertFinalNewline": true, + "files.eol": "\n", + "files.trimTrailingWhitespace": true, + "files.associations": { + "*.tmpl": "tt", + "*.css": "css", + "*.cgi": "perl" + }, + "gitlens.blame.ignoreWhitespace": true +} |