lint fix demo shell

This commit is contained in:
Eugenio Romano 2017-10-06 19:46:18 +01:00
parent c9c5a1318e
commit 9597afb3d5
7 changed files with 16 additions and 14 deletions

View File

@ -15,7 +15,6 @@
* limitations under the License. * limitations under the License.
*/ */
import { DataSource } from '@angular/cdk/collections';
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import { Http } from '@angular/http'; import { Http } from '@angular/http';
import { AlfrescoAuthenticationService, AppConfigService, BpmProductVersionModel, DiscoveryApiService, EcmProductVersionModel } from 'ng2-alfresco-core'; import { AlfrescoAuthenticationService, AppConfigService, BpmProductVersionModel, DiscoveryApiService, EcmProductVersionModel } from 'ng2-alfresco-core';

View File

@ -128,7 +128,10 @@
"check-decl", "check-decl",
"check-operator", "check-operator",
"check-separator", "check-separator",
"check-type" "check-typecast",
"check-type",
"check-typecast",
"check-module"
], ],
"ordered-imports": true, "ordered-imports": true,
"use-input-property-decorator": true, "use-input-property-decorator": true,
@ -136,10 +139,10 @@
"use-host-property-decorator": false, "use-host-property-decorator": false,
"use-life-cycle-interface": true, "use-life-cycle-interface": true,
"use-pipe-transform-interface": true, "use-pipe-transform-interface": true,
"component-class-suffix": true,
"directive-class-suffix": true,
"no-access-missing-member": false, "no-access-missing-member": false,
"templates-use-public": true, "templates-use-public": true,
"invoke-injectable": true "invoke-injectable": true,
"component-class-suffix": true,
"directive-class-suffix": true
} }
} }