(re)enable no-extra-semi rule
parent
d18119e288
commit
12eb715644
|
@ -19,7 +19,7 @@
|
||||||
"no-duplicate-case": "warn",
|
"no-duplicate-case": "warn",
|
||||||
"no-duplicate-imports": "warn",
|
"no-duplicate-imports": "warn",
|
||||||
"no-eval": "warn",
|
"no-eval": "warn",
|
||||||
"no-extra-semi": "off",
|
"no-extra-semi": "warn",
|
||||||
"no-new-wrappers": "warn",
|
"no-new-wrappers": "warn",
|
||||||
"no-redeclare": "off",
|
"no-redeclare": "off",
|
||||||
"no-sparse-arrays": "warn",
|
"no-sparse-arrays": "warn",
|
||||||
|
|
|
@ -56,7 +56,7 @@ function hasThemeChange(d: any, p: any) : boolean {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
};
|
}
|
||||||
|
|
||||||
suite('colorization', () => {
|
suite('colorization', () => {
|
||||||
let extensionsFolder = normalize(join(__dirname, '../../'));
|
let extensionsFolder = normalize(join(__dirname, '../../'));
|
||||||
|
|
|
@ -34,7 +34,7 @@ suite('ExtHostDiagnostics', () => {
|
||||||
assert.throws(() => collection.clear());
|
assert.throws(() => collection.clear());
|
||||||
assert.throws(() => collection.delete(URI.parse('aa:bb')));
|
assert.throws(() => collection.delete(URI.parse('aa:bb')));
|
||||||
// tslint:disable-next-line:semicolon
|
// tslint:disable-next-line:semicolon
|
||||||
assert.throws(() => collection.forEach(() => { ; }));
|
assert.throws(() => collection.forEach(() => { }));
|
||||||
assert.throws(() => collection.get(URI.parse('aa:bb')));
|
assert.throws(() => collection.get(URI.parse('aa:bb')));
|
||||||
assert.throws(() => collection.has(URI.parse('aa:bb')));
|
assert.throws(() => collection.has(URI.parse('aa:bb')));
|
||||||
assert.throws(() => collection.set(URI.parse('aa:bb'), []));
|
assert.throws(() => collection.set(URI.parse('aa:bb'), []));
|
||||||
|
|
Loading…
Reference in New Issue