style: tslint enforces no debugger statements left behind (#25532)
PR Close #25532
This commit is contained in:
parent
503905c807
commit
116946fb11
|
@ -530,7 +530,6 @@ describe('Esm2015ReflectionHost', () => {
|
|||
const host = new Esm2015ReflectionHost(program.getTypeChecker());
|
||||
const classNode =
|
||||
getDeclaration(program, SOME_DIRECTIVE_FILE.name, 'SomeDirective', ts.isClassDeclaration);
|
||||
debugger;
|
||||
const members = host.getMembersOfClass(classNode);
|
||||
|
||||
const staticMethod = members.find(member => member.name === 'staticMethod') !;
|
||||
|
|
|
@ -414,7 +414,6 @@ describe('Esm5ReflectionHost', () => {
|
|||
const host = new Esm5ReflectionHost(program.getTypeChecker());
|
||||
const classNode = getDeclaration(
|
||||
program, SOME_DIRECTIVE_FILE.name, 'SomeDirective', ts.isVariableDeclaration);
|
||||
debugger;
|
||||
const decorators = host.getDecoratorsOfDeclaration(classNode) !;
|
||||
|
||||
expect(decorators).toBeDefined();
|
||||
|
@ -584,7 +583,6 @@ describe('Esm5ReflectionHost', () => {
|
|||
const host = new Esm5ReflectionHost(program.getTypeChecker());
|
||||
const classNode = getDeclaration(
|
||||
program, SOME_DIRECTIVE_FILE.name, 'SomeDirective', ts.isVariableDeclaration);
|
||||
debugger;
|
||||
const members = host.getMembersOfClass(classNode);
|
||||
|
||||
const staticMethod = members.find(member => member.name === 'staticMethod') !;
|
||||
|
|
|
@ -130,7 +130,6 @@ describe('SelectorScopeRegistry', () => {
|
|||
|
||||
registry.registerSelector(ProgramCmp, 'program-cmp');
|
||||
|
||||
debugger;
|
||||
const scope = registry.lookupCompilationScope(ProgramCmp) !;
|
||||
expect(scope).toBeDefined();
|
||||
expect(scope.directives).toBeDefined();
|
||||
|
|
|
@ -60,10 +60,8 @@ export interface Injectable { providedIn?: Type<any>|'root'|null; }
|
|||
* @Annotation
|
||||
*/
|
||||
export const Injectable: InjectableDecorator = makeDecorator(
|
||||
'Injectable', undefined, undefined, undefined, (type: Type<any>, meta: Injectable) => {
|
||||
debugger;
|
||||
return R3_COMPILE_INJECTABLE(type, meta);
|
||||
});
|
||||
'Injectable', undefined, undefined, undefined,
|
||||
(type: Type<any>, meta: Injectable) => R3_COMPILE_INJECTABLE(type, meta));
|
||||
|
||||
/**
|
||||
* Type representing injectable service.
|
||||
|
|
|
@ -77,6 +77,7 @@ export function assertNgModuleType(
|
|||
}
|
||||
|
||||
function throwError(msg: string): never {
|
||||
// tslint:disable-next-line
|
||||
debugger; // Left intentionally for better debugger experience.
|
||||
throw new Error(`ASSERTION ERROR: ${msg}`);
|
||||
}
|
||||
|
|
|
@ -116,6 +116,7 @@ function _it(
|
|||
jsmFn: Function, testName: string, testFn: (done?: DoneFn) => any, testTimeout = 0): void {
|
||||
if (runnerStack.length == 0) {
|
||||
// This left here intentionally, as we should never get here, and it aids debugging.
|
||||
// tslint:disable-next-line
|
||||
debugger;
|
||||
throw new Error('Empty Stack!');
|
||||
}
|
||||
|
|
|
@ -61,9 +61,6 @@ export class SymbolExtractor {
|
|||
// Left for easier debugging.
|
||||
// console.log('###', ts.SyntaxKind[child.kind], child.getText());
|
||||
}
|
||||
if (symbols.length && symbols[symbols.length - 1].name == 'type') {
|
||||
debugger;
|
||||
}
|
||||
}
|
||||
visitor(source);
|
||||
symbols.sort(SymbolExtractor.symbolSort);
|
||||
|
|
51
tslint.json
51
tslint.json
|
@ -5,27 +5,56 @@
|
|||
"node_modules/tslint-eslint-rules/dist/rules"
|
||||
],
|
||||
"rules": {
|
||||
"file-header": [true, "Copyright Google Inc\\."],
|
||||
"no-console": [true, "log"],
|
||||
"file-header": [
|
||||
true,
|
||||
"Copyright Google Inc\\."
|
||||
],
|
||||
"no-console": [
|
||||
true,
|
||||
"log"
|
||||
],
|
||||
"no-duplicate-imports": true,
|
||||
"no-duplicate-variable": true,
|
||||
"no-jasmine-focus": true,
|
||||
"no-var-keyword": true,
|
||||
"require-internal-with-underscore": true,
|
||||
"rollup-config": true,
|
||||
"semicolon": [true],
|
||||
"variable-name": [true, "ban-keywords"],
|
||||
"no-inner-declarations": [true, "function"]
|
||||
"semicolon": [
|
||||
true
|
||||
],
|
||||
"variable-name": [
|
||||
true,
|
||||
"ban-keywords"
|
||||
],
|
||||
"no-inner-declarations": [
|
||||
true,
|
||||
"function"
|
||||
],
|
||||
"no-debugger": true
|
||||
},
|
||||
"jsRules": {
|
||||
"file-header": [true, "Copyright Google Inc\\."],
|
||||
"no-console": [true, "log"],
|
||||
"file-header": [
|
||||
true,
|
||||
"Copyright Google Inc\\."
|
||||
],
|
||||
"no-console": [
|
||||
true,
|
||||
"log"
|
||||
],
|
||||
"no-duplicate-imports": true,
|
||||
"no-duplicate-variable": true,
|
||||
"no-jasmine-focus": true,
|
||||
"require-internal-with-underscore": true,
|
||||
"semicolon": [true],
|
||||
"variable-name": [true, "ban-keywords"],
|
||||
"no-inner-declarations": [true, "function"]
|
||||
"semicolon": [
|
||||
true
|
||||
],
|
||||
"variable-name": [
|
||||
true,
|
||||
"ban-keywords"
|
||||
],
|
||||
"no-inner-declarations": [
|
||||
true,
|
||||
"function"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue