diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-10-09 07:16:36 +0100 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-10-09 07:16:36 +0100 |
commit | c9798c0e6da53c132021f03ac7a50ccd8714b371 (patch) | |
tree | 0d6d49b2eb40ad161a72adbfbf9874b64540bf74 /editors/code/tslint.json | |
parent | f4ad36e972989c3feed8671d6d6fca0aed37cd8f (diff) | |
parent | e26071d96e1ff56289213dbe78415f836de8a70e (diff) |
Merge #104
104: Add vscode extension to CI r=aochagavia a=DJMcNab
Note that this testing is only done on travis - we are only running formatting and linting, so feature parity on appveyor is not required.
CC @aochagavia.
Fixes? #100
Co-authored-by: Daniel McNab <[email protected]>
Diffstat (limited to 'editors/code/tslint.json')
-rw-r--r-- | editors/code/tslint.json | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/editors/code/tslint.json b/editors/code/tslint.json index ce48dfc95..bdeb4895e 100644 --- a/editors/code/tslint.json +++ b/editors/code/tslint.json | |||
@@ -1,13 +1,9 @@ | |||
1 | { | 1 | { |
2 | "defaultSeverity": "error", | 2 | "defaultSeverity": "error", |
3 | "extends": [ | 3 | "extends": ["tslint:recommended", "tslint-config-prettier"], |
4 | "tslint:recommended" | ||
5 | ], | ||
6 | "jsRules": {}, | ||
7 | "rules": { | 4 | "rules": { |
8 | "quotemark": [true, "single"], | 5 | "quotemark": [true, "single"], |
9 | "interface-name": false, | 6 | "interface-name": false, |
10 | "object-literal-sort-keys": false | 7 | "object-literal-sort-keys": false |
11 | }, | 8 | } |
12 | "rulesDirectory": [] | ||
13 | } | 9 | } |