1. Problem DescriptionWhen we develop a vue project, we may accidentally choose eslint when creating it. This detection rule is a nightmare for novices and will make you crash. So what should we do if we don't want eslint to detect it? I have summarized some methods for different versions. 2. Problem Solving1. First is the older vue project Older projects may have a file like The red-framed part in the above picture shows the file contents in my project. Other projects may have other contents. We can just comment out or remove the contents in the frame. 2. When creating a project, do not choose eslint 3. If the editing software you are using is WebStorm 4. The created project does not have a webpack.base.conf.js file, but has a .eslintrc.js @vue/standard Just comment this out. 5. For newer Vue projects, there is no (direct) webpack.base.conf.js file in the directory, but there may be one in node_module. And there is no .eslintrc.js file In this case, our project's directory structure will generally create a module.exports = { lintOnSave: false }, After the change, you need to restart the project to take effect. You can turn it off by setting it to false. For other configurations, see the description on the official website 6. Modify the .eslintignore file There is a file .eslintignore in the root directory. Just add the files you don’t need to check. This method is basically enough to solve this problem, but the author still recommends that you use this test file when you have some development experience. It can not only cultivate good programming habits, but also make it easier to keep the same style as other people in the team. This concludes this article on how to turn off eslint detection in vue (multiple methods). For more information about how to turn off eslint detection in vue, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Use Xshell to connect to the Linux virtual machine on VMware (graphic steps)
>>: MySQL transaction isolation level details
If you open some Microsoft documents with LibreOf...
Method 1: Use script method: Create a common head...
Suddenly when I logged into MySQL, it said that a...
When installing mha4mysql, the steps are roughly:...
1. HTML font color setting In HTML, we use the fo...
Table of contents Precautions Necessary condition...
Serve: # chkconfig --list List all system service...
MySQL creates users and authorizes and revokes us...
For several reasons (including curiosity), I star...
Table of contents Overview 1. Path module 2. Unti...
Let's look at the case first. Use vue+swiper ...
The img tag in XHTML is so-called self-closing, w...
This article uses an example to describe how MySQ...
This article introduces 4 methods to achieve mask...
This time, we will try to package the running con...