Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tnramalho committed Jun 26, 2024
1 parent 6dcfd84 commit e4c2165
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { UserCacheEntityFixture } from '../__fixtures__/entities/user-cache-enti
import { UserEntityFixture } from '../__fixtures__/entities/user-entity.fixture';
import { UserCacheFactoryFixture } from '../__fixtures__/factories/user-cache.factory.fixture';
import { UserFactoryFixture } from '../__fixtures__/factories/user.factory.fixture';
import { CacheCreateDto } from '../dto/cache-create.dto';

describe('CacheAssignmentController (e2e)', () => {
let app: INestApplication;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ import { CacheSettingsInterface } from '../interfaces/cache-settings.interface';
import { CacheCrudService } from '../services/cache-crud.service';
import getExpirationDate from '../utils/get-expiration-date.util';
import { CacheService } from '../services/cache.service';
import { CacheEntityAlreadyExistsException } from '../exceptions/cache-entity-already-exists.exception';
import { CacheCreateDto } from '../dto/cache-create.dto';
/**
* Cache assignment controller.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Column, Index, Unique } from 'typeorm';
import { Column, Unique } from 'typeorm';
import { ReferenceIdInterface } from '@concepta/ts-core';
import { CacheInterface } from '@concepta/ts-common';
import { CommonPostgresEntity } from '@concepta/typeorm-common';
Expand Down
6 changes: 1 addition & 5 deletions packages/nestjs-cache/src/services/cache.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@ import { plainToInstance } from 'class-transformer';
import { validate } from 'class-validator';
import { DeepPartial, Repository } from 'typeorm';
import { Inject, Injectable } from '@nestjs/common';
import {
CacheCreatableInterface,
CacheInterface,
CacheUpdatableInterface,
} from '@concepta/ts-common';
import { CacheInterface, CacheUpdatableInterface } from '@concepta/ts-common';
import { ReferenceAssignment, ReferenceId, Type } from '@concepta/ts-core';
import {
QueryOptionsInterface,
Expand Down

0 comments on commit e4c2165

Please sign in to comment.