Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
82 views

I'm writing a shared ESLint configuration for my own project. One of the configurations for the JS project is: import js from '@eslint/js'; import { defineConfig } from 'eslint/config'; import ...
lai9fox's user avatar
  • 79
1 vote
1 answer
677 views

In the project I'm working where we have the vue/attribute-hyphenation eslint rule configured to always enforce attribute hyphenation in Vue 3 components. The problem is that the hyphens break the new ...
Iván Francés Alcántara's user avatar
2 votes
2 answers
2k views

I am getting a conflicting peer dependency: [email protected] when trying to build/deploy my Vue CLI application using Heroku: npm ERR! Could not resolve dependency: npm ERR! peer ...
mushvamp's user avatar
10 votes
1 answer
4k views

When run eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore . script using npm run lint, the following error occurs. /(somethingSomething...)/Test.vue 0:0 error Parsing error: "...
HK S0's user avatar
  • 581
3 votes
0 answers
974 views

I use "eslint-plugin-vue" I would like to use the rule "vue/singleline-html-element-content-newline" in my projects but it works inconvenient for me All the more because this rule ...
belykh's user avatar
  • 1,360
1 vote
1 answer
6k views

I am setting up eslint for vue in vscode. I am getting this notification when ever I format my code. ESLint stack trace: [Error - 2:20:56 AM] Error: Failed to load config "eslint-plugin-vue"...
Abdullah Ch's user avatar
  • 2,203
2 votes
5 answers
9k views

Edit: Somehow doing v-if and v-else statements fixed this. Nonetheless could someone explain how to fix this? Summary: Error occurs because of 2 Elements present in template. This Vue 3 The template ...
wiebke-blip's user avatar
0 votes
0 answers
63 views

I've got a Nuxt project set up with eslint. VSCode autmatically formats my code. However I don't understand why it complains about the style tags on my div: <div style="background-image: url('/...
danielmoessner's user avatar
0 votes
1 answer
171 views

I had a team member run npm install earlier today, and now eslint want the tags to use camel case instead of dashes. That means that every single place we have a <v-btn> or a <v-tab> is ...
Christopher Waugh's user avatar
0 votes
1 answer
818 views

I have to configure the linter rules, so that it can detect space in html between "{{ value }}" for example, this would be ok <div>{{ value }}</div> and the error would be wrong <div&...
sara's user avatar
  • 169
3 votes
1 answer
13k views

My current .eslintrc.js file has these options set for the eslint-plugin-vue plugin: "vue/html-closing-bracket-newline": ["error", { "singleline": "never", "multiline": "always" }] The ...
Billal BEGUERADJ's user avatar