Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lint treat warnings as errors #2444

Merged
merged 2 commits into from Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/frontend/package.json
Expand Up @@ -11,7 +11,7 @@
"dev": "vite --host",
"build": "NODE_ENV=production vite build",
"serve": "echo 'This is a preview server for testing the built website. Please use `dev` command over `serve`.\nStarting preview server in 5 seconds..\n';sleep 5; vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --ignore-pattern src/components/vue-tour src"
"lint": "eslint --max-warnings=0 --ext .js,.vue --ignore-path .gitignore --ignore-pattern src/components/vue-tour src"
},
"dependencies": {
"@google/model-viewer": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion core/frontend/src/components/vehiclesetup/Configure.vue
@@ -1,6 +1,6 @@
<template>
<div>
<v-container fluid v-if="is_dev_mode">
<v-container v-if="is_dev_mode" fluid>
<v-tabs
v-model="page_selected"
centered
Expand Down