About VSCode formatting JS automatically adding or removing semicolons

About VSCode formatting JS automatically adding or removing semicolons

introduction

It is okay to add or not add a semicolon at the end of a js code sentence. Generally, when developing a team, a unified standard is required, either adding a semicolon or not. However, sometimes we can remember to add a semicolon, and sometimes we can't remember to add it. This will cause some of our codes to have semicolons and some not, which will be messy. To solve this problem, we can use a formatter to help us automatically add or remove semicolons at the end of sentences.

The specific operation method is to type some js code first, and then use it to see the effect. If you have downloaded a lot of plug-ins and have a bunch of js formatters, then you need to configure the default formatter.

Please add a description of the image

Select Configure Default Formatter

Please add a description of the image

Select the js formatter that comes with VSCode

Please add a description of the image

Open Settings

Please add a description of the image

Open the settings json file

Please add a description of the image

Add a javascript.format.semicolons property

This attribute has three values.

The first type ignore

"javascript.format.semicolons": "ignore",

This is the default value of this property. When formatting, do not delete or add semicolons. It does not matter what happens. It is the same as when there is no configuration. I will not demonstrate it.

The second insert

"javascript.format.semicolons": "insert",

When formatting, add a semicolon at the end of the sentence, the effect is as follows:

Please add a description of the image

The third type remove

"javascript.format.semicolons": "remove",

When formatting, no semicolon is added at the end of the sentence, and the effect is as follows:

Please add a description of the image

If you need other code formatting related configurations, you can send me a private message in the comment area. I may write a few more articles about formatting configuration in the future.

This is the end of this article about how to automatically add or remove semicolons in VSCode formatted JS. For more information about VSCode formatted JS, 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:
  • Detailed explanation of using code to format configuration using the Prettier plugin in vscode
  • Implementation of VSCode formatting indented code
  • VScode formatting ESlint method (the most complete and best method)
  • Vue-cli Eslint code automatic formatting method in vscode
  • Solve the problem that vscode will automatically add semicolons and double quotes when formatting vue

<<:  Docker executes a command in a container outside the container

>>:  Using HTML web page examples to explain the meaning of the head area code

Recommend

Steps to split and compress CSS with webpack and import it with link

Let's take a look at the code file structure ...

Summary of the unknown usage of "!" in Linux

Preface In fact, the humble "!" has man...

Mysql command line mode access operation mysql database operation

Usage Environment In cmd mode, enter mysql --vers...

Solution to VMware virtual machine no network

Table of contents 1. Problem Description 2. Probl...

Use h1, h2, and h3 tags appropriately

In the process of making web pages, it is inevita...

Examples of using provide and inject in Vue2.0/3.0

Table of contents 1. What is the use of provide/i...

Detailed explanation of Vue project packaging

Table of contents 1. Related configuration Case 1...

Installation tutorial of MySQL 5.1 and 5.7 under Linux

The operating system for the following content is...

How to Easily Remove Source Installed Packages in Linux

Step 1: Install Stow In this example, we are usin...

Solution to Ubuntu cannot connect to the network

Effective solution for Ubuntu in virtual machine ...

Analysis of the pros and cons of fixed, fluid, and flexible web page layouts

There is a question that has troubled web designe...

Use of CSS3's focus-within selector

Pseudo-elements and pseudo-classes Speaking of th...

Two ways to write stored procedures in Mysql with and without return values

Process 1: with return value: drop procedure if e...

Detailed explanation of 5 solutions for CSS intermediate adaptive layout

Preface When making a page, we often encounter co...

Detailed explanation of MySQL syntax, special symbols and regular expressions

Mysql commonly used display commands 1. Display t...