Skip to content

Commit 12eb715

Browse files
committed
(re)enable no-extra-semi rule
1 parent d18119e commit 12eb715

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"no-duplicate-case": "warn",
2020
"no-duplicate-imports": "warn",
2121
"no-eval": "warn",
22-
"no-extra-semi": "off",
22+
"no-extra-semi": "warn",
2323
"no-new-wrappers": "warn",
2424
"no-redeclare": "off",
2525
"no-sparse-arrays": "warn",

extensions/vscode-colorize-tests/src/colorizer.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function hasThemeChange(d: any, p: any) : boolean {
5656
}
5757
}
5858
return false;
59-
};
59+
}
6060

6161
suite('colorization', () => {
6262
let extensionsFolder = normalize(join(__dirname, '../../'));

src/vs/workbench/test/electron-browser/api/extHostDiagnostics.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ suite('ExtHostDiagnostics', () => {
3434
assert.throws(() => collection.clear());
3535
assert.throws(() => collection.delete(URI.parse('aa:bb')));
3636
// tslint:disable-next-line:semicolon
37-
assert.throws(() => collection.forEach(() => { ; }));
37+
assert.throws(() => collection.forEach(() => { }));
3838
assert.throws(() => collection.get(URI.parse('aa:bb')));
3939
assert.throws(() => collection.has(URI.parse('aa:bb')));
4040
assert.throws(() => collection.set(URI.parse('aa:bb'), []));

0 commit comments

Comments
 (0)