Skip to content

Commit

Permalink
#46 add license in files
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcellino-Palerme committed Jun 6, 2024
1 parent 8b23fae commit b4f1bae
Show file tree
Hide file tree
Showing 14 changed files with 59 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2024 Marcellino Palerme <[email protected]>
//
// SPDX-License-Identifier: MIT
module.exports = {
root: true,
extends: ['@nuxt/eslint-config'],
Expand Down
6 changes: 6 additions & 0 deletions app.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2024 Marcellino Palerme <marcellino.palerme@inrae.fr>

SPDX-License-Identifier: MIT
-->

<template>
<NuxtLayout>
<Suspense>
Expand Down
5 changes: 5 additions & 0 deletions components/ManageBase.async.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<!--
SPDX-FileCopyrightText: 2024 Marcellino Palerme <marcellino.palerme@inrae.fr>

SPDX-License-Identifier: MIT
-->
<template>
<v-card
class="w-50 justify-center d-flex mx-auto"
Expand Down
5 changes: 5 additions & 0 deletions components/ManageMachine.async.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<!--
SPDX-FileCopyrightText: 2024 Marcellino Palerme <marcellino.palerme@inrae.fr>

SPDX-License-Identifier: MIT
-->
<template>
<v-card
class="w-50 justify-center d-flex mx-auto"
Expand Down
5 changes: 5 additions & 0 deletions components/ManageMix.async.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<!--
SPDX-FileCopyrightText: 2024 Marcellino Palerme <marcellino.palerme@inrae.fr>

SPDX-License-Identifier: MIT
-->
<template>
<v-card
class="w-50 justify-center d-flex mx-auto"
Expand Down
5 changes: 5 additions & 0 deletions components/ManageMolecule.async.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<!--
SPDX-FileCopyrightText: 2024 Marcellino Palerme <marcellino.palerme@inrae.fr>

SPDX-License-Identifier: MIT
-->
<template>
<v-card
class="w-50 justify-center d-flex mx-auto"
Expand Down
5 changes: 5 additions & 0 deletions components/ManageMother.async.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<!--
SPDX-FileCopyrightText: 2024 Marcellino Palerme <marcellino.palerme@inrae.fr>

SPDX-License-Identifier: MIT
-->
<template>
<v-card
class="w-50 justify-center d-flex mx-auto"
Expand Down
5 changes: 5 additions & 0 deletions components/ManageSerie.async.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<!--
SPDX-FileCopyrightText: 2024 Marcellino Palerme <marcellino.palerme@inrae.fr>

SPDX-License-Identifier: MIT
-->
<template>
<v-card
class="w-50 justify-center d-flex mx-auto"
Expand Down
5 changes: 5 additions & 0 deletions test/extra/EmptyComponent.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<!--
SPDX-FileCopyrightText: 2024 Marcellino Palerme <marcellino.palerme@inrae.fr>

SPDX-License-Identifier: MIT
-->
<template>
<div>
<slot />
Expand Down
3 changes: 3 additions & 0 deletions test/extra/useVuetify.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2024 Marcellino Palerme <[email protected]>
//
// SPDX-License-Identifier: MIT
import { createVuetify } from 'vuetify';
import * as components from 'vuetify/components';
import * as directives from 'vuetify/directives';
Expand Down
3 changes: 3 additions & 0 deletions test/layouts/default.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2024 Marcellino Palerme <[email protected]>
//
// SPDX-License-Identifier: MIT
import { mount } from '@vue/test-utils';
import { expect, test, describe } from 'vitest';
import { createVuetify } from 'vuetify';
Expand Down
3 changes: 3 additions & 0 deletions test/layouts/navigateLayout.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2024 Marcellino Palerme <[email protected]>
//
// SPDX-License-Identifier: MIT
import { mount, config } from '@vue/test-utils';
import { createVuetify } from 'vuetify';
import * as components from 'vuetify/components';
Expand Down
3 changes: 3 additions & 0 deletions test/middleware/checkLogin.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2024 Marcellino Palerme <[email protected]>
//
// SPDX-License-Identifier: MIT
import { describe, it, expect, vi, beforeEach } from 'vitest';
import type { RouteLocationNormalized } from 'vue-router';
import checkLoginGlobal from '~/middleware/checkLogin.global';
Expand Down
3 changes: 3 additions & 0 deletions vitest.setup.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: 2024 Marcellino Palerme <[email protected]>
//
// SPDX-License-Identifier: MIT
import { config } from "@vue/test-utils";
import { createI18n, } from "vue-i18n";
import en from "@/lang/en-US";
Expand Down

0 comments on commit b4f1bae

Please sign in to comment.