]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
no bug - add basic vscode settings
authorDylan William Hardison <dylan@hardison.net>
Mon, 20 Aug 2018 20:04:01 +0000 (16:04 -0400)
committerGitHub <noreply@github.com>
Mon, 20 Aug 2018 20:04:01 +0000 (16:04 -0400)
.editorconfig
.vscode/settings.json [new file with mode: 0644]

index 59bb73282f1fac627d47c5a97bba6de101d316be..2d527a2504c36fd96478f6752b6ff6933ba9e882 100644 (file)
@@ -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 (file)
index 0000000..6e0d93e
--- /dev/null
@@ -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
+}