Skip to content

Commit dd24a05

Browse files
committed
tslint: Enable whitespace
1 parent f6f071c commit dd24a05

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

src/backend/mi2/mi2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ export class MI2 extends EventEmitter implements IBackend {
609609
if (name) {
610610
ret.name = name;
611611
}
612-
612+
613613
return ret;
614614
});
615615
}

test/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
//
2-
// PLEASE DO NOT MODIFY / DELETE UNLESS YOU KNOW WHAT YOU ARE DOING
1+
//
2+
// PLEASE DO NOT MODIFY / DELETE UNLESS YOU KNOW WHAT YOU ARE DOING
33
//
44
// This file is providing the test runner to use when running extension tests.
55
// By default the test runner in use is Mocha based.
6-
//
6+
//
77
// You can provide your own test runner if you want to override it by exporting
88
// a function run(testRoot: string, clb: (error:Error) => void) that the extension
99
// host can call to run the tests. The test runner is expected to use console.log

test/mi_parse.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,14 @@ suite("MI Parse", () => {
158158
]
159159
]
160160
];
161-
161+
162162
assert.equal(MINode.valueOf(obj[0], "@frame.level"), "0");
163163
assert.equal(MINode.valueOf(obj[0], "@frame.addr"), "0x0000000000435f70");
164164
assert.equal(MINode.valueOf(obj[0], "@frame.func"), "D main");
165165
assert.equal(MINode.valueOf(obj[0], "@frame.file"), "source/app.d");
166166
assert.equal(MINode.valueOf(obj[0], "@frame.fullname"), "/path/to/source/app.d");
167167
assert.equal(MINode.valueOf(obj[0], "@frame.line"), "5");
168-
168+
169169
assert.equal(MINode.valueOf(obj[1], "@frame.level"), "1");
170170
assert.equal(MINode.valueOf(obj[1], "@frame.addr"), "0x00000000004372d3");
171171
assert.equal(MINode.valueOf(obj[1], "@frame.func"), "rt.dmain2._d_run_main()");

tslint.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
"no-consecutive-blank-lines": false,
2525
"no-empty": false,
2626
"no-shadowed-variable": false,
27-
"no-trailing-whitespace": false,
2827
"no-unnecessary-initializer": false,
2928
"object-literal-shorthand": false,
3029
"object-literal-sort-keys": false,

0 commit comments

Comments
 (0)