(linting) Migrated over to the ESLint

This commit is contained in:
sercan
2021-05-14 17:17:06 +03:00
parent 0c5f5b9165
commit d159ae1458
182 changed files with 3543 additions and 2400 deletions

View File

@@ -173,7 +173,6 @@ export class NavigationComponent
navComponent.refresh();
}
/**
* Toggle the drawer
*/

View File

@@ -52,7 +52,7 @@
</li>
<li>
<p><strong>AuthInterceptor</strong></p>
<p>An interceptor to attach the <em>access_token</em> to the header of the requests and catching 401 responses.</p>
<p>An interceptor to attach the <em>access token</em> to the header of the requests and catching 401 responses.</p>
</li>
<li>
<p><strong>AuthService</strong></p>

View File

@@ -237,7 +237,7 @@ export class DirectoryStructureComponent implements OnInit
/**
* Create a new tree
*/
createTree(data): { dataSource: any, treeControl: any }
createTree(data): { dataSource: any; treeControl: any }
{
// Create tree control and mock-api source
const treeControl = new FlatTreeControl<FlatDirNode>(node => node.level, node => node.expandable);