Analysis of idea compiler vue indentation error problem scenario

Analysis of idea compiler vue indentation error problem scenario

Project scenario:

When running the Vue project, there was an indentation error. I was using the idea compiler and checked online. Most of them directly changed the number of indents, but I thought it was troublesome and just wanted to turn off the verification.

Problem description:

Vue indentation error occurs in idea compiler

✘ http://eslint.org/docs/rules/indent Expected indentation of 0 spaces but found 2
src\components\Home.vue:6:1
export default {
^

✘ http://eslint.org/docs/rules/indent Expected indentation of 2 spaces but found 4
src\components\Home.vue:7:1
name: 'Home'
^

✘ http://eslint.org/docs/rules/indent Expected indentation of 0 spaces but found 2
src\components\Home.vue:8:1
}
^

✘ 3 problems (3 errors, 0 warnings)

Solution:

insert image description here

Just add these three lines of code in .eslintrc.js

'no-tabs':'off',
    'indent':'off',
    'space-before-function-paren':0

After joining

rules:
    // allow async-await
    'generator-star-spacing': 'off',
    // allow debugger during development
    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'no-tabs':'off',
    'indent':'off',
    'space-before-function-paren':0
  }

This is the end of this article about the scenario analysis of the Vue indentation error problem in the idea compiler. For more relevant Vue indentation error content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to use rich text editor wangEditor3 in Vue
  • Vue3 compilation process-source code analysis
  • In-depth understanding of Vue3 template compilation principle
  • Solve the problem that Vue-cli cannot compile es6
  • Vue project packaging and compilation optimization solution
  • A brief discussion on the code exploration generated by webpack compiling vue projects
  • Vue template compilation details

<<:  A simple example of MySQL joint table query

>>:  How to use the dig/nslookup command to view DNS resolution steps

Recommend

css Get all elements starting from the nth one

The specific code is as follows: <div id="...

Operate on two columns of data as new columns in sql

As shown below: select a1,a2,a1+a2 a,a1*a2 b,a1*1...

HTML framework_Powernode Java Academy

1. Framework A browser document window can only d...

Tutorial on installing php5, uninstalling php, and installing php7 on centos

First, install PHP5 very simple yum install php T...

Who is a User Experience Designer?

Scary, isn't it! Translation in the picture: ...

js to achieve simple product screening function

This article example shares the specific code of ...

React configuration px conversion rem method

Install related dependencies npm i lib-flexible -...

SpringBoot integrates Activiti7 implementation code

After the official release of Activiti7, it has f...

How to insert Emoji expressions into MySQL

Preface Today, when I was designing a feedback fo...

Detailed explanation of the Sidecar mode in Docker Compose

Table of contents What is Docker Compose Requirem...

MySQL uses events to complete scheduled tasks

Events can specify the execution of SQL code once...