chore: add ESLint configuration for api and web packages
Some checks failed
CI / test (push) Failing after 43s

- Introduced ESLint configuration files for both api and web packages to enforce coding standards.
- Updated MinioService and TokenService to improve error handling and type definitions.
- Refactored localStorage access in web components to use window.localStorage for consistency.
- Enhanced ESLint rules in base configuration to improve code quality and maintainability.
This commit is contained in:
Juan Sebastián Montoya 2025-05-06 01:16:16 -05:00
parent a1590e7228
commit 857ffcd6b4
14 changed files with 46 additions and 38 deletions

View file

@ -172,7 +172,7 @@ export function RoomList(props: RoomListProps) {
// Check if the current user is a member of a room
const isMember = (room: Room) => {
const userId = localStorage.getItem('userId');
const userId = window.localStorage.getItem('userId');
return room.members?.some((member) => member.id === userId);
};