Skip to content

Commit 0b5c783

Browse files
committed
chore(*): apply updated linting
1 parent ed6dcbf commit 0b5c783

39 files changed

+1103
-377
lines changed

package-lock.json

Lines changed: 1053 additions & 372 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"@nestjs/passport": "10.0.1",
5555
"@nestjs/platform-express": "10.2.7",
5656
"@nestjs/testing": "10.2.7",
57-
"@sclable/lint": "1.8.1",
57+
"@sclable/lint": "2.0.1",
5858
"@sclable/tsconfig": "0.11.18",
5959
"@types/eslint": "8.44.2",
6060
"@types/fs-extra": "11.0.2",

packages/auth/src/guards/jwt.guard.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { AuthGuard } from '@nestjs/passport'
44
import { Observable } from 'rxjs'
55

66
import { IS_LOCAL_AUTH, IS_PUBLIC_ENDPOINT } from '../decorators'
7+
78
import { LocalGuard } from './local.guard'
89

910
export class JwtGuard extends AuthGuard('jwt') {

packages/auth/src/modules/keycloak-auth.module.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { KeycloakAuthController } from '../controllers'
1010
import { AuthModuleOptions } from '../interfaces'
1111
import { ExternalAuthService } from '../services'
1212
import { KeycloakStrategy, MockStrategy } from '../strategies'
13+
1314
import { AuthModule } from './auth.module'
1415

1516
@Global()

packages/auth/src/modules/local-auth.module.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { LocalGuard } from '../guards'
99
import { AuthModuleOptions } from '../interfaces'
1010
import { LocalAuthService } from '../services'
1111
import { JwtStrategy, LocalStrategy, MockStrategy } from '../strategies'
12+
1213
import { AuthModule } from './auth.module'
1314

1415
@Global()

packages/auth/src/services/external-auth.service.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
} from '../contracts'
1010
import { CreateAuthProviderUser, JwtPayload } from '../interfaces'
1111
import { UserID } from '../types'
12+
1213
import { AuthService } from './auth.service'
1314

1415
@Injectable()

packages/auth/src/services/local-auth.service.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { JwtService } from '@nestjs/jwt'
44
import { USER_SERVICE } from '../constants'
55
import { ApplicationUserContract, UserServiceContract } from '../contracts'
66
import { JwtPayload } from '../interfaces'
7+
78
import { AuthService } from './auth.service'
89

910
export class LocalAuthService<

packages/auth/src/strategies/mock.strategy.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { PassportStrategy } from '@nestjs/passport'
33

44
import { USER_SERVICE } from '../constants'
55
import { ApplicationUserContract, TestUserServiceContract } from '../contracts'
6+
67
import { PassportMockStrategy } from './passport-mock-strategy/passport-mock-strategy'
78

89
@Injectable()

packages/es-cqrs-schematics/src/es-cqrs/aggregate/aggregate.factory.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { pastParticiple } from '../../past-participle'
1717
import { formatCodeSettings } from '../format'
1818
import { EsCqrsSchema, Parameter } from '../schema'
1919
import { KeyValuesDefinition, getImports, isCreating, updateImports } from '../utils'
20+
2021
import { AggregateSchema } from './aggregate.schema'
2122

2223
export function main(options: EsCqrsSchema): Rule {

packages/es-cqrs-schematics/src/es-cqrs/command-handler/command-handler.factory.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import { Project, VariableDeclarationKind } from 'ts-morph'
1515
import { formatCodeSettings } from '../format'
1616
import { EsCqrsSchema } from '../schema'
1717
import { isCreating, mergeWithArrayString } from '../utils'
18+
1819
import { CommandHandlerSchema } from './command-handler.schema'
1920

2021
export function main(options: EsCqrsSchema): Rule {

0 commit comments

Comments
 (0)