style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-05-04 12:09:43 +00:00
parent ac4ece29c7
commit 71f20526f1
15 changed files with 15 additions and 18 deletions

View file

@ -2,11 +2,10 @@ import { Collection, Entity, ManyToMany, PrimaryKey, Property } from '@mikro-orm
import { Teacher } from '../users/teacher.entity.js';
import { Student } from '../users/student.entity.js';
import { ClassRepository } from '../../data/classes/class-repository.js';
import { customAlphabet } from "nanoid";
import { customAlphabet } from 'nanoid';
const generateClassId = customAlphabet('ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789', 6);
@Entity({
repository: () => ClassRepository,
})