Skip to content

Commit

Permalink
chore: fix eslint warnings and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
superglue777 committed Sep 19, 2021
1 parent 9fa0eab commit af269e6
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .env.default
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ GOOGLE_CLOUD_STORAGE_BACKUP_FOLDER=fusor-hub-backup
MESSENTE_URL=https://api.messente.com/v1/omnimessage
MESSENTE_SENDER=<registered sender phone number>
MESSENTE_USER=<user name>
MESSENTE_PASSWORD=<password>
MESSENTE_PASSWORD=<password>
26 changes: 13 additions & 13 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"explorer.compactFolders": false,
"cSpell.words": [
"Configurator",
"IFTTT",
"MESSENTE",
"fusor",
"iogateway",
"jsonata",
"nestjs",
"omni"
],
"debug.javascript.autoAttachFilter": "onlyWithFlag"
}
"explorer.compactFolders": false,
"cSpell.words": [
"Configurator",
"IFTTT",
"MESSENTE",
"fusor",
"iogateway",
"jsonata",
"nestjs",
"omni"
],
"debug.javascript.autoAttachFilter": "onlyWithFlag"
}
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/features/definitions/definitions.module.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Module } from '@nestjs/common';

import { DefinitionsServiceModule } from './../../shared/services/definitions/definitions-service.module';
import { DefinitionsServiceModule } from '../../shared/services/definitions';
import { DefinitionsController } from './controller/definitions.controller';

@Module({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Test, TestingModule } from '@nestjs/testing';

import { AggregatesService } from '../../../shared/services/aggregates';
import { ParamsService } from './../../../shared/services/params';
import { ParamsService } from '../../../shared/services/params';
import { StorageService } from './storage.service';

describe('StorageService', () => {
Expand Down
5 changes: 4 additions & 1 deletion src/shared/services/action-flow/operators/emitter-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ export abstract class EmitterBase<C = any> implements EventEmitter {
outputs: Record<string, EventObservable> = {};

constructor(protected readonly _moduleRef: ModuleRef) {}


// eslint-disable-next-line @typescript-eslint/no-empty-function
destroy(): void {}

// eslint-disable-next-line @typescript-eslint/no-empty-function, @typescript-eslint/no-unused-vars
init(config?: C): void {}
}
2 changes: 1 addition & 1 deletion src/shared/services/aggregates/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './aggregates-service.module';
export * from './service/aggregates.service';
export * from './type'
export * from './type';

0 comments on commit af269e6

Please sign in to comment.