Skip to content

Commit

Permalink
Fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiencrassat committed Sep 29, 2024
1 parent af556cb commit d54e84e
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 29 deletions.
3 changes: 2 additions & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ sonar.projectKey=cv-with-nuxt
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
sonar.sources=.

sonar.tests=**/*.spec.js, **/*.test.js, **/*.test.ts

# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8

Expand Down
9 changes: 0 additions & 9 deletions src/components/contactMe.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,3 @@
</a>
</p>
</template>

<script>
export default {
// INFO: Remove data() when coverage is successful with vue-jest@4.x.x
data() {
return {};
},
};
</script>
9 changes: 0 additions & 9 deletions src/components/navigation/switchLang.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,3 @@
</nuxt-link>
</p>
</template>

<script>
export default {
// INFO: Remove data() when coverage is successful with vue-jest@4.x.x
data() {
return {};
},
};
</script>
9 changes: 0 additions & 9 deletions src/components/svgIcons/svgIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,3 @@
<slot />
</svg>
</template>

<script>
export default {
// INFO: Remove data() when coverage is successful with vue-jest@4.x.x
data() {
return {};
},
};
</script>
2 changes: 1 addition & 1 deletion src/lib/curriculumVitae.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const Tools = {
};

export default class CurriculumVitae {
private lang: string;
private readonly lang: string;

private curriculumVitae: ICurriculumVitae;
// It is called dynamicaly by eval()
Expand Down

0 comments on commit d54e84e

Please sign in to comment.