Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

234
Views
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?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

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.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!