Skip to content

Commit eb055aa

Browse files
fix: remove log calls (CirclonGroup#890)
closes CirclonGroup#889
1 parent 02d325d commit eb055aa

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

projects/angular-tree-component/src/lib/models/tree-options.model.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,6 @@ export class TreeOptions {
9696
actionMapping: IActionMapping;
9797

9898
constructor(private options: ITreeOptions = {}) {
99-
console.log('actionMapping', this.options.actionMapping);
100-
console.log('defaultActionMapping', defaultActionMapping);
101-
10299
this.actionMapping = {
103100
...defaultActionMapping,
104101
...this.options.actionMapping,

projects/angular-tree-component/tslint.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@
1010
true,
1111
"element",
1212
"kebab-case"
13+
],
14+
"no-console": [
15+
true,
16+
"debug",
17+
"info",
18+
"time",
19+
"timeEnd",
20+
"trace",
21+
"log"
1322
]
1423
}
1524
}

0 commit comments

Comments
 (0)