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
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,8 @@ You can use the following configs by adding them to `eslint.config.js`.
73
73
74
74
:::warning Reporting rules
75
75
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).
76
+
77
+
Alternatively, you can set`process.env.VUE_ESLINT_ALWAYS_ERROR` to`true` in your configuration file to have`error` be used by all rules.