Skip to content

Commit 6ab76aa

Browse files
committed
Revert "chore: update dependencies and refactor perplexity module"
This reverts commit b281ab3.
1 parent 98be5cd commit 6ab76aa

File tree

8 files changed

+4364
-3291
lines changed

8 files changed

+4364
-3291
lines changed

backend/.eslintignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
node_modules/
2+
cdk.out/
3+
coverage/
4+
config/
5+
.vscode/
6+
.gitignore
7+
.prettierrc
8+
.prettierignore
9+
.eslintignore

backend/.eslintrc.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
parser: '@typescript-eslint/parser',
3+
parserOptions: {
4+
projectService: true, // Changed from project: 'tsconfig.json'
5+
sourceType: 'module',
6+
},
7+
plugins: ['@typescript-eslint/eslint-plugin', 'prettier'],
8+
extends: ['plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
9+
root: true,
10+
env: {
11+
node: true,
12+
jest: true,
13+
},
14+
ignorePatterns: ['.eslintrc.js'],
15+
rules: {
16+
'prettier/prettier': 'error',
17+
'@typescript-eslint/interface-name-prefix': 'off',
18+
'@typescript-eslint/explicit-function-return-type': 'off',
19+
'@typescript-eslint/explicit-module-boundary-types': 'off',
20+
'@typescript-eslint/no-explicit-any': 'off',
21+
},
22+
};

backend/eslint.config.js

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)