This repository has been archived by the owner on Feb 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
33 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Controllers | ||
|
||
This directory contains source files for the controllers exported by this extension. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--compilers ts:ts-node/register | ||
--recursive | ||
--reporter dot | ||
dist/test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,17 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/tslint", | ||
"extends": [ | ||
"./tslint.json" | ||
], | ||
// This configuration files enabled rules which require type checking | ||
// and therefore cannot be run by Visual Studio Code TSLint extension | ||
// See https://github.com/Microsoft/vscode-tslint/issues/70 | ||
"rules": { | ||
// These rules find errors related to TypeScript features. | ||
|
||
|
||
// These rules catch common errors in JS programming or otherwise | ||
// confusing constructs that are prone to producing bugs. | ||
|
||
"await-promise": true, | ||
"no-floating-promises": true, | ||
"no-void-expression": [true, "ignore-arrow-function-shorthand"] | ||
} | ||
"$schema": "http://json.schemastore.org/tslint", | ||
"extends": ["./tslint.json"], | ||
// This configuration files enabled rules which require type checking | ||
// and therefore cannot be run by Visual Studio Code TSLint extension | ||
// See https://github.com/Microsoft/vscode-tslint/issues/70 | ||
"rules": { | ||
// These rules find errors related to TypeScript features. | ||
|
||
// These rules catch common errors in JS programming or otherwise | ||
// confusing constructs that are prone to producing bugs. | ||
|
||
"await-promise": true, | ||
"no-floating-promises": true, | ||
"no-void-expression": [true, "ignore-arrow-function-shorthand"] | ||
} | ||
} |