Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

540
Vistas
How to prevent npm run lint from fixing errors automatically?

I created a Vue3 app using the Vue CLI with a Prettier/Eslint setup. When modifying the main.ts file to

import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";

createApp(App)
.use(router).mount("#app");

and run npm run serve I get the following warning

6:15 warning Delete ⏎ prettier/prettier

as expected. Running npm run lint fixes it. But which flag is required to only check for the style?

I have a GitHub action workflow checking the code style and using npm run lint is wrong because the workflow fixes the code style and passes.

When searching for a flag I run npx vue-cli-service help lint which tells me to use --no-fix

enter image description here

but running npm run lint --no-fix it still fixes the file

enter image description here

So which command should I use inside my GitHub action to ensure the workflow fails on invalid code style?

over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

You have to use a double dash before your arguments, so use npm run lint -- --no-fix with -- as extra prefix instead of npm run lint --no-fix. See also this answer.

over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda