You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/user-guide/index.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -166,8 +166,8 @@ module.exports = {
166
166
extends: [
167
167
// add more generic rulesets here, such as:
168
168
// 'eslint:recommended',
169
-
'plugin:vue/vue3-recommended',
170
-
// 'plugin:vue/recommended' // Use this if you are using Vue.js 2.x.
169
+
'plugin:vue/recommended'
170
+
// 'plugin:vue/vue2-recommended' // Use this if you are using Vue.js 2.x.
171
171
],
172
172
rules: {
173
173
// override/add rules settings here, such as:
@@ -185,13 +185,13 @@ You can use the following configs by adding them to `extends`.
185
185
186
186
-`"plugin:vue/base"` ... Settings and rules to enable correct ESLint parsing.
187
187
- Configurations for using Vue.js 3.x:
188
-
-`"plugin:vue/vue3-essential"` ... `base`, plus rules to prevent errors or unintended behavior.
189
-
-`"plugin:vue/vue3-strongly-recommended"` ... Above, plus rules to considerably improve code readability and/or dev experience.
190
-
-`"plugin:vue/vue3-recommended"` ... Above, plus rules to enforce subjective community defaults to ensure consistency.
191
-
- Configurations for using Vue.js 2.x:
192
188
-`"plugin:vue/essential"` ... `base`, plus rules to prevent errors or unintended behavior.
193
189
-`"plugin:vue/strongly-recommended"` ... Above, plus rules to considerably improve code readability and/or dev experience.
194
-
-`"plugin:vue/recommended"` ... Above, plus rules to enforce subjective community defaults to ensure consistency
190
+
-`"plugin:vue/recommended"` ... Above, plus rules to enforce subjective community defaults to ensure consistency.
191
+
- Configurations for using Vue.js 2.x:
192
+
-`"plugin:vue/vue2-essential"` ... `base`, plus rules to prevent errors or unintended behavior.
193
+
-`"plugin:vue/vue2-strongly-recommended"` ... Above, plus rules to considerably improve code readability and/or dev experience.
194
+
-`"plugin:vue/vue2-recommended"` ... Above, plus rules to enforce subjective community defaults to ensure consistency
195
195
196
196
:::warning Reporting rules
197
197
By default, all rules from **base** and **essential** categories report ESLint errors. Other rules - because they're not covering potential bugs in the application - report warnings. What does it mean? By default - nothing, but if you want - you can set up a threshold and break the build after a certain amount of warnings, instead of any. More information [here](https://eslint.org/docs/user-guide/command-line-interface#handling-warnings).
@@ -264,7 +264,7 @@ Full example:
264
264
"extends": [
265
265
"eslint:recommended",
266
266
"plugin:@typescript-eslint/recommended",
267
-
"plugin:vue/vue3-recommended"
267
+
"plugin:vue/recommended"
268
268
],
269
269
"parser": "vue-eslint-parser",
270
270
"parserOptions": {
@@ -436,7 +436,7 @@ Most `eslint-plugin-vue` rules require `vue-eslint-parser` to check `<template>`
436
436
437
437
Make sure you have one of the following settings in your **.eslintrc**:
438
438
439
-
-`"extends": ["plugin:vue/vue3-recommended"]`
439
+
-`"extends": ["plugin:vue/recommended"]`
440
440
-`"extends": ["plugin:vue/base"]`
441
441
442
442
If you already use another parser (e.g. `"parser": "@typescript-eslint/parser"`), please move it into `parserOptions`, so it doesn't collide with the `vue-eslint-parser` used by this plugin's configuration:
@@ -482,7 +482,7 @@ module.exports = {
482
482
// ...
483
483
// 'eslint:recommended',
484
484
// ...
485
-
'plugin:vue/vue3-recommended',
485
+
'plugin:vue/recommended',
486
486
// ...
487
487
'prettier'
488
488
// Make sure "prettier" is the last element in this list.
0 commit comments