Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmorissette committed Apr 24, 2021
1 parent e881725 commit 94d5357
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 24 deletions.
32 changes: 16 additions & 16 deletions .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"ExpandedNodes": [
"",
"\\integration",
"\\integration\\app",
"\\integration\\app\\src",
"\\integration\\app\\src\\examples",
"\\integration\\app\\src\\examples\\delivery",
"\\integration\\tests",
"\\integration\\tests\\interceptors",
"\\lib",
"\\lib\\src",
"\\lib\\src\\interceptors"
],
"SelectedNode": "\\package.json",
"PreviewInSolutionExplorer": false
}
"ExpandedNodes": [
"",
"\\integration",
"\\integration\\app",
"\\integration\\app\\src",
"\\integration\\app\\src\\examples",
"\\integration\\app\\src\\examples\\delivery",
"\\integration\\tests",
"\\integration\\tests\\interceptors",
"\\lib",
"\\lib\\src",
"\\lib\\src\\interceptors"
],
"SelectedNode": "\\package.json",
"PreviewInSolutionExplorer": false
}
Binary file modified .vs/slnx.sqlite
Binary file not shown.
Binary file modified .vs/storage-plugin-extension/v16/.suo
Binary file not shown.
4 changes: 2 additions & 2 deletions integration/app/src/configuration.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { InterceptorStrategy } from '@ngxs-labs/storage-plugin-extension';

import { Account } from './examples/delivery/account';
import { AccountStateModel } from './examples/delivery/account.state';
import { ShipmentStateModel } from './examples/delivery/shipment.state';
import { Parcel } from './examples/delivery/parcel';
import { Account } from './examples/delivery/account';
import { ShipmentStateModel } from './examples/delivery/shipment.state';

export const strategy: InterceptorStrategy = new InterceptorStrategy([
{
Expand Down
4 changes: 1 addition & 3 deletions integration/app/src/examples/delivery/account.component.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Component, OnInit } from '@angular/core';
import { FormControl, FormGroup, Validators } from '@angular/forms';

import { Select, Store } from '@ngxs/store';

import { Observable } from 'rxjs';

import { Account } from './account';
Expand All @@ -22,7 +20,7 @@ export class AccountComponent implements OnInit {

constructor(private readonly _store: Store) {}

ngOnInit() {
public ngOnInit(): void {
const account: Account | undefined = this._store.selectSnapshot(AccountState.account);

if (account) {
Expand Down
4 changes: 1 addition & 3 deletions integration/app/src/examples/delivery/shipment.component.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Component, OnInit } from '@angular/core';
import { FormControl, FormGroup, Validators } from '@angular/forms';

import { Select, Store } from '@ngxs/store';

import { Observable } from 'rxjs';

import { Parcel } from './parcel';
Expand All @@ -25,7 +23,7 @@ export class ShipmentComponent implements OnInit {

constructor(private readonly _store: Store) {}

ngOnInit() {
public ngOnInit(): void {
const parcel: Parcel | undefined = this._store.selectSnapshot(ShipmentState.parcel);

if (parcel) {
Expand Down

0 comments on commit 94d5357

Please sign in to comment.