From: Dylan William Hardison Date: Mon, 20 Aug 2018 20:04:01 +0000 (-0400) Subject: no bug - add basic vscode settings X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68e11003a64225a3943544304744fc1ccc5c21bc;p=thirdparty%2Fbugzilla.git no bug - add basic vscode settings --- 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 +}