Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 0 additions & 59 deletions backend/eslint.config.mjs

This file was deleted.

8 changes: 0 additions & 8 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch --preserveWatchOutput",
"start:debug": "nest start --debug --watch",
Expand Down Expand Up @@ -62,7 +61,6 @@
"crypto-js": "4.2.0",
"csv": "^6.4.1",
"dotenv": "17.2.3",
"eslint-plugin-security": "3.0.1",
"express": "5.2.1",
"fetch-blob": "^4.0.0",
"helmet": "8.1.0",
Expand Down Expand Up @@ -111,15 +109,9 @@
"@types/supertest": "^6.0.3",
"@types/uuid": "^11.0.0",
"@types/validator": "^13.15.10",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"ava": "6.4.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"knip": "^5.75.0",
"nock": "^14.0.10",
"prettier": "^3.7.4",
"supertest": "^7.1.4",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
Expand Down
19 changes: 9 additions & 10 deletions backend/src/app.controller.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
import { Controller, Get, Inject, UseInterceptors } from '@nestjs/common';
import { ApiTags } from '@nestjs/swagger';
import { UseCaseType } from './common/data-injection.tokens.js';
import { InTransactionEnum } from './enums/index.js';
import { SentryInterceptor } from './interceptors/index.js';
import { IGetHello } from './use-cases-app/use-cases-app.interface.js';
import { ApiTags } from '@nestjs/swagger';

@UseInterceptors(SentryInterceptor)
@Controller()
@ApiTags('app')
export class AppController {
constructor(
@Inject(UseCaseType.GET_HELLO)
private readonly getHelloUseCase: IGetHello,
) {}
constructor(
@Inject(UseCaseType.GET_HELLO)
private readonly getHelloUseCase: IGetHello,
) {}

@Get('/hello')
async getHello(): Promise<string> {
return this.getHelloUseCase.execute(undefined, InTransactionEnum.OFF);
}
@Get('/hello')
async getHello(): Promise<string> {
return this.getHelloUseCase.execute(undefined, InTransactionEnum.OFF);
}
}

5 changes: 3 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
"indentStyle": "tab",
"lineWidth": 120
},
"linter": {
"enabled": true,
Expand Down Expand Up @@ -200,7 +201,7 @@
},
"javascript": {
"formatter": {
"quoteStyle": "double"
"quoteStyle": "single"
},
"parser": {
"unsafeParameterDecoratorsEnabled": true
Expand Down
59 changes: 0 additions & 59 deletions rocketadmin-agent/eslint.config.mjs

This file was deleted.

11 changes: 2 additions & 9 deletions rocketadmin-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node dist/main.js",
"start:dev": "tsc -p tsconfig.build.json && node dist/main.js",
"start:debug": "node --inspect dist/main.js",
"start:prod": "node dist/main.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
"start:prod": "node dist/main.js"

Comment on lines +16 to +17
Copy link

Copilot AI Dec 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a trailing comma missing after the "start:prod" script entry. Line 16 should end with a comma since it's followed by another property in the JSON object. Additionally, line 17 contains unnecessary whitespace before the closing brace.

Suggested change
"start:prod": "node dist/main.js"
"start:prod": "node dist/main.js",

Copilot uses AI. Check for mistakes.
},
"dependencies": {
"@azure/core-tracing": "^1.3.1",
Expand All @@ -37,12 +36,6 @@
"@types/inquirer": "^9.0.9",
"@types/node": "^24.9.1",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.7.4",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
Expand Down
59 changes: 0 additions & 59 deletions shared-code/eslint.config.mjs

This file was deleted.

9 changes: 0 additions & 9 deletions shared-code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
}
}
},
"scripts": {
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.952.0",
"@aws-sdk/lib-dynamodb": "^3.952.0",
Expand Down Expand Up @@ -45,12 +42,6 @@
"devDependencies": {
"@types/oracledb": "^6.10.0",
"@types/pg-copy-streams": "^1.2.5",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
}
}
Loading
Loading