From b506281a49b9c9e46f44fd475151a18c91559c3a Mon Sep 17 00:00:00 2001 From: Mark Salsbery Date: Thu, 25 Aug 2016 18:15:28 -0700 Subject: [PATCH 1/2] Added Visual Studio Code workspace configuration --- .vscode/settings.json | 32 ++++++++++++++++++++++++++++++++ .vscode/tasks.json | 25 +++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 .vscode/tasks.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..303e3e1e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,32 @@ +// Place your settings in this file to overwrite default and user settings. +{ + // Controls the font size. + "editor.fontSize": 14, + + // The number of spaces a tab is equal to. + "editor.tabSize": 4, + + // Insert spaces when pressing Tab. + "editor.insertSpaces": true, + + // When opening a file, `editor.tabSize` and `editor.insertSpaces` will be detected based on the file contents. + "editor.detectIndentation": false, + + // Columns at which to show vertical rulers + "editor.rulers": [80], + + // Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping + "editor.wrappingColumn": 0, + + // Controls the indentation of wrapped lines. Can be one of 'none', 'same' or 'indent'. + "editor.wrappingIndent": "none", + + // The default character set encoding to use when reading and writing files. + "files.encoding": "utf8", + + // The default end of line character. + "files.eol": "\n", + + // When enabled, will trim trailing whitespace when you save a file. + "files.trimTrailingWhitespace": true +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..ae6e3918 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,25 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "0.1.0", + "command": "grunt", + "isShellCommand": true, + "tasks": [ + { + "taskName": "build", + "args": [], + "isBuildCommand": true, + "isWatching": false, + "problemMatcher": [ + "$lessCompile", + "$tsc", + "$jshint" + ] + }, + { + "taskName": "test", + "args": [], + "isTestCommand": true + } + ] +} \ No newline at end of file From ff7dfac544519944be4238101dd5a84475bcdfc6 Mon Sep 17 00:00:00 2001 From: Mark Salsbery Date: Sat, 27 Aug 2016 11:27:04 -0700 Subject: [PATCH 2/2] newline at end --- .vscode/settings.json | 2 +- .vscode/tasks.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 303e3e1e..752fa89f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -29,4 +29,4 @@ // When enabled, will trim trailing whitespace when you save a file. "files.trimTrailingWhitespace": true -} \ No newline at end of file +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json index ae6e3918..d9679e8f 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -22,4 +22,4 @@ "isTestCommand": true } ] -} \ No newline at end of file +}