Forgot indent
This commit is contained in:
parent
0fa4b1d5df
commit
a304d2d729
|
|
@ -16,7 +16,7 @@ module.exports = {
|
|||
],
|
||||
"rules": {
|
||||
"arrow-parens": ["error", "as-needed"],
|
||||
"@typescript-eslint/indent": ['off', 2],
|
||||
"@typescript-eslint/indent": ['error', 2],
|
||||
"max-len": ["off", { "code": 140, "ignorePattern": "import *" }], // smaller than 140?
|
||||
"object-curly-newline": ["error", { "ImportDeclaration": "never" }],
|
||||
"quote-props": ["error", "as-needed"],
|
||||
|
|
|
|||
|
|
@ -44,9 +44,10 @@ describe('ClassificationDetailsComponent', () => {
|
|||
let fixture: ComponentFixture<ClassificationDetailsComponent>;
|
||||
const treeNodes: Array<TreeNodeModel> = new Array(new TreeNodeModel());
|
||||
|
||||
let classificationsService; let classificationCategoriesService;
|
||||
let treeService; let
|
||||
removeConfirmationService;
|
||||
let classificationsService;
|
||||
let classificationCategoriesService;
|
||||
let treeService;
|
||||
let removeConfirmationService;
|
||||
|
||||
beforeEach(done => {
|
||||
const configure = (testBed: TestBed) => {
|
||||
|
|
|
|||
|
|
@ -43,8 +43,8 @@ describe('ClassificationListComponent', () => {
|
|||
let fixture: ComponentFixture<ClassificationListComponent>;
|
||||
const treeNodes: Array<TreeNodeModel> = new Array(new TreeNodeModel());
|
||||
const classificationTypes: Array<string> = new Array<string>('type1', 'type2');
|
||||
let classificationsService; let
|
||||
classificationCategoriesService;
|
||||
let classificationsService;
|
||||
let classificationCategoriesService;
|
||||
|
||||
beforeEach(done => {
|
||||
const configure = (testBed: TestBed) => {
|
||||
|
|
|
|||
|
|
@ -27,8 +27,11 @@ import { AccessItemsComponent } from './access-items.component';
|
|||
describe('AccessItemsComponent', () => {
|
||||
let component: AccessItemsComponent;
|
||||
let fixture: ComponentFixture<AccessItemsComponent>;
|
||||
let workbasketService; let debugElement; let alertService; let accessIdsService; let
|
||||
formsValidatorService;
|
||||
let workbasketService;
|
||||
let debugElement;
|
||||
let alertService;
|
||||
let accessIdsService;
|
||||
let formsValidatorService;
|
||||
|
||||
|
||||
beforeEach(done => {
|
||||
|
|
|
|||
|
|
@ -37,8 +37,12 @@ const routes: Routes = [
|
|||
describe('WorkbasketInformationComponent', () => {
|
||||
let component: WorkbasketInformationComponent;
|
||||
let fixture: ComponentFixture<WorkbasketInformationComponent>;
|
||||
let debugElement; let workbasketService; let alertService; let savingWorkbasketService; let requestInProgressService; let
|
||||
formsValidatorService;
|
||||
let debugElement;
|
||||
let workbasketService;
|
||||
let alertService;
|
||||
let savingWorkbasketService;
|
||||
let requestInProgressService;
|
||||
let formsValidatorService;
|
||||
|
||||
beforeEach(done => {
|
||||
const configure = (testBed: TestBed) => {
|
||||
|
|
|
|||
|
|
@ -35,8 +35,9 @@ export class DummyDetailComponent {
|
|||
describe('WorkbasketListToolbarComponent', () => {
|
||||
let component: WorkbasketListToolbarComponent;
|
||||
let fixture: ComponentFixture<WorkbasketListToolbarComponent>;
|
||||
let debugElement; let workbasketService; let
|
||||
router;
|
||||
let debugElement;
|
||||
let workbasketService;
|
||||
let router;
|
||||
|
||||
const routes: Routes = [
|
||||
{ path: ':id', component: DummyDetailComponent, outlet: 'detail' }
|
||||
|
|
|
|||
|
|
@ -9,8 +9,9 @@ import { AppComponent } from './app.component';
|
|||
import { NavBarComponent } from './components/nav-bar/nav-bar.component';
|
||||
|
||||
describe('AppComponent', () => {
|
||||
let app; let fixture; let
|
||||
debugElement;
|
||||
let app;
|
||||
let fixture;
|
||||
let debugElement;
|
||||
|
||||
const routes: Routes = [
|
||||
{ path: 'classifications', component: AppComponent }
|
||||
|
|
|
|||
|
|
@ -20,8 +20,8 @@ import { NavBarComponent } from './nav-bar.component';
|
|||
describe('NavBarComponent', () => {
|
||||
let component: NavBarComponent;
|
||||
let fixture: ComponentFixture<NavBarComponent>;
|
||||
let debugElement; let
|
||||
navBar;
|
||||
let debugElement;
|
||||
let navBar;
|
||||
|
||||
const routes: Routes = [
|
||||
{ path: 'classifications', component: NavBarComponent }
|
||||
|
|
|
|||
|
|
@ -17,8 +17,8 @@ describe('StartupService', () => {
|
|||
taskanaLogoutUrl: someLogoutUrl
|
||||
};
|
||||
|
||||
let httpMock; let
|
||||
service;
|
||||
let httpMock;
|
||||
let service;
|
||||
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
|
|
|
|||
|
|
@ -26,8 +26,10 @@ export class DummyDetailComponent {
|
|||
}
|
||||
|
||||
describe('MasterAndDetailComponent ', () => {
|
||||
let component; let fixture; let debugElement; let
|
||||
router;
|
||||
let component;
|
||||
let fixture;
|
||||
let debugElement;
|
||||
let router;
|
||||
|
||||
const routes: Routes = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue