Skip to content

Commit

Permalink
fix: linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
francisvaut committed Apr 14, 2024
1 parent a413503 commit 7b5f1f5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/projects/ProjectCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@ const { t } = useI18n();
}
}
</style>
@/types/Project
@/types/Project
2 changes: 1 addition & 1 deletion frontend/src/components/projects/SubmissionCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ const formattedDeadline = computed(() => {
</template>

<style scoped lang="scss"></style>
@/types/Project
@/types/Project
2 changes: 1 addition & 1 deletion frontend/src/composables/services/assistant.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Assistant } from '@/types/users/Assistant.ts';
import { User } from '@/types/users/User.ts';
import { type User } from '@/types/users/User.ts';
import { Response } from '@/types/Response';
import { type Ref, ref } from 'vue';
import { endpoints } from '@/config/endpoints.ts';
Expand Down
1 change: 0 additions & 1 deletion frontend/src/composables/services/student.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Student } from '@/types/users/Student.ts';
import { User } from '@/types/users/User.ts';
import { Response } from '@/types/Response';
import { type Ref, ref } from 'vue';
import { endpoints } from '@/config/endpoints.ts';
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/composables/services/teacher.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
import { User } from '@/types/users/User.ts';
import { type User } from '@/types/users/User.ts';
import { Teacher } from '@/types/users/Teacher.ts';
import { Response } from '@/types/Response';
import { type Ref, ref } from 'vue';
Expand Down Expand Up @@ -63,7 +63,7 @@ export function useTeacher(): TeacherState {
await create<Teacher>(
endpoint,
{
id: user.id
id: user.id,
},
teacher,
Teacher.fromJSON,
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/calendar/CalendarView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -279,4 +279,4 @@ watch(selectedDate, (date) => {
border-radius: 50%;
}
</style>
@/types/Project
@/types/Project
2 changes: 1 addition & 1 deletion frontend/src/views/projects/CreateProjectView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -251,4 +251,4 @@ async function submitProject(): Promise<void> {
</template>

<style scoped></style>
@/types/Project
@/types/Project

0 comments on commit 7b5f1f5

Please sign in to comment.