Skip to content
Open
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
16 changes: 8 additions & 8 deletions backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
fastapi
uvicorn
python-dotenv
httpx
azure-ai-agents
githubkit
aiohttp
azure-identity
fastapi>=0.115.0,<0.116.0
uvicorn>=0.34.0,<0.35.0
python-dotenv>=1.1.0,<2.0.0
httpx>=0.28.0,<0.29.0
azure-ai-agents>=1.0.0,<2.0.0
githubkit>=0.12.0,<0.13.0
aiohttp>=3.12.0,<4.0.0
azure-identity>=1.23.0,<2.0.0
35 changes: 0 additions & 35 deletions frontend/.eslintrc.js

This file was deleted.

31 changes: 31 additions & 0 deletions frontend/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import js from '@eslint/js';
import globals from 'globals';
import reactHooks from 'eslint-plugin-react-hooks';
import reactRefresh from 'eslint-plugin-react-refresh';
import tseslint from 'typescript-eslint';

export default tseslint.config(
{ ignores: ['dist'] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ['**/*.{ts,tsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
plugins: {
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
},
rules: {
...reactHooks.configs.recommended.rules,
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-explicit-any': 'warn',
'no-console': ['warn', { allow: ['warn', 'error'] }],
},
},
)
Loading