Table of Contents
tslint vs eslint
How to migrate
Home Web Front-end JS Tutorial Let's talk about how to migrate tslint to eslint in Angular

Let's talk about how to migrate tslint to eslint in Angular

Mar 31, 2022 am 11:44 AM
angular

This article will take you to continue learning angular, compare tslint and eslint, and introduce how to migrate tslint to eslint in Angular. I hope it will be helpful to everyone!

Let's talk about how to migrate tslint to eslint in Angular

Hello everyone, Angular has been upgraded from 12 to 13 recently. The official has automatically removed the tslint configuration in angular.json, so we'd better follow the official arrangement. Used eslint. [Related tutorial recommendations: "angular tutorial"]

tslint vs eslint

##tslintPlug-in used to check ts syntax specificationsNo longer maintained; Angular has been deprecated since 11eslintCheck js/ts code specificationsStill maintained, official recommendation

How to migrate

1. Install eslint dependencies and run the following command:

ng add @angular-eslint/schematics
Copy after login

Run results:

    # The ##.eslintrc.json file is automatically generated at root, and the
  • @angular-eslinteslint plug-in is used by default.
  • {
      "root": true,
      "ignorePatterns": [
        "projects/**/*"
      ],
      "overrides": [
        {
          "files": [
            "*.ts"
          ],
          "parserOptions": {
            "project": [
              "tsconfig.json"
            ],
            "createDefaultProgram": true
          },
          "extends": [
            "plugin:@angular-eslint/recommended",
            "plugin:@angular-eslint/template/process-inline-templates"
          ],
          "rules": {
            "@angular-eslint/directive-selector": [
              "error",
              {
                "type": "attribute",
                "prefix": "app",
                "style": "camelCase"
              }
            ],
            "@angular-eslint/component-selector": [
              "error",
              {
                "type": "element",
                "prefix": "app",
                "style": "kebab-case"
              }
            ]
          }
        },
        {
          "files": [
            "*.html"
          ],
          "extends": [
            "plugin:@angular-eslint/template/recommended"
          ],
          "rules": {}
        }
      ]
    }
    Copy after login
    The following eslint-related cli configuration is added to angular.json. If you generate lib or application through the ng command line in the future, .eslintrc.json will be automatically generated under this module
  • "cli": {
    	    "defaultCollection": "@angular-eslint/schematics"
      }
    Copy after login

2. Remove or replace tslint related files or configuration

    Delete tslint in the root directory or module. json
  • Delete tslint-related dev dependency packages, such as
  • tslint or typescript-tslint-plugin, etc.
  • (if any) in tsconfig.json Delete the tslint-plugin related configuration, such as

Lets talk about how to migrate tslint to eslint in Angular

    Change the tslint configuration (if any) under angular.json to eslint, which may need to be modified manually
Original tslint configuration:

Lets talk about how to migrate tslint to eslint in Angular

Modified eslint configuration (e.g. configured to execute lint in the projects/lint-test directory):

Lets talk about how to migrate tslint to eslint in Angular

3. If you need to temporarily turn off the eslint check of some codes or files

    above the code Add the following comment to temporarily turn off the eslint check of this code
  • /* eslint-disable */
    const some_un_used_var;
    Copy after login
    You can add the rule when the eslint check reports an error in the comment to indicate the reason for temporarily turning off the check. For example, in the following code, you don’t want an unused variable to be checked by eslint and throw an error
  • /* eslint-disable @typescript-eslint/no-unused-vars */
    const some_un_used_var;
    Copy after login
    If you need to turn off the eslint check of some files, you can add the .eslintignore file under the root
  • Patterns that require lint checking can be configured in .eslintrc (this article will not go into details,
  • Official introduction)

4. Check whether it can be used

Run the lint command

ng lint
Copy after login

If the operation is successful, congratulations on completing the migration!

(Optional) Other supporting eslint plug-ins

can be configured in .eslintrc.json (

Official Document)

(Optional) Configure VS code

Install the eslint plug-in

Lets talk about how to migrate tslint to eslint in Angular

##VS code automatically corrects eslint related issues when savingSet in .vscode/settings.json

"editor.codeActionsOnSave": { "source.fixAll.eslint": true }
Copy after login

Or search for onsave settings under File->Preferences->Settings to find eslint-related settings

##For more programming-related knowledge, please visit:Lets talk about how to migrate tslint to eslint in Angular Introduction to programming

! !

lint type Use Current situation

The above is the detailed content of Let's talk about how to migrate tslint to eslint in Angular. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1666
14
PHP Tutorial
1273
29
C# Tutorial
1254
24
Let's talk about metadata and decorators in Angular Let's talk about metadata and decorators in Angular Feb 28, 2022 am 11:10 AM

This article continues the learning of Angular, takes you to understand the metadata and decorators in Angular, and briefly understands their usage. I hope it will be helpful to everyone!

How to install Angular on Ubuntu 24.04 How to install Angular on Ubuntu 24.04 Mar 23, 2024 pm 12:20 PM

Angular.js is a freely accessible JavaScript platform for creating dynamic applications. It allows you to express various aspects of your application quickly and clearly by extending the syntax of HTML as a template language. Angular.js provides a range of tools to help you write, update and test your code. Additionally, it provides many features such as routing and form management. This guide will discuss how to install Angular on Ubuntu24. First, you need to install Node.js. Node.js is a JavaScript running environment based on the ChromeV8 engine that allows you to run JavaScript code on the server side. To be in Ub

An article exploring server-side rendering (SSR) in Angular An article exploring server-side rendering (SSR) in Angular Dec 27, 2022 pm 07:24 PM

Do you know Angular Universal? It can help the website provide better SEO support!

A brief analysis of how to use monaco-editor in angular A brief analysis of how to use monaco-editor in angular Oct 17, 2022 pm 08:04 PM

How to use monaco-editor in angular? The following article records the use of monaco-editor in angular that was used in a recent business. I hope it will be helpful to everyone!

Angular + NG-ZORRO quickly develop a backend system Angular + NG-ZORRO quickly develop a backend system Apr 21, 2022 am 10:45 AM

This article will share with you an Angular practical experience and learn how to quickly develop a backend system using angualr combined with ng-zorro. I hope it will be helpful to everyone!

How to use PHP and Angular for front-end development How to use PHP and Angular for front-end development May 11, 2023 pm 04:04 PM

With the rapid development of the Internet, front-end development technology is also constantly improving and iterating. PHP and Angular are two technologies widely used in front-end development. PHP is a server-side scripting language that can handle tasks such as processing forms, generating dynamic pages, and managing access permissions. Angular is a JavaScript framework that can be used to develop single-page applications and build componentized web applications. This article will introduce how to use PHP and Angular for front-end development, and how to combine them

Detailed explanation of angular learning state manager NgRx Detailed explanation of angular learning state manager NgRx May 25, 2022 am 11:01 AM

This article will give you an in-depth understanding of Angular's state manager NgRx and introduce how to use NgRx. I hope it will be helpful to you!

Token-based authentication with Angular and Node Token-based authentication with Angular and Node Sep 01, 2023 pm 02:01 PM

Authentication is one of the most important parts of any web application. This tutorial discusses token-based authentication systems and how they differ from traditional login systems. By the end of this tutorial, you will see a fully working demo written in Angular and Node.js. Traditional Authentication Systems Before moving on to token-based authentication systems, let’s take a look at traditional authentication systems. The user provides their username and password in the login form and clicks Login. After making the request, authenticate the user on the backend by querying the database. If the request is valid, a session is created using the user information obtained from the database, and the session information is returned in the response header so that the session ID is stored in the browser. Provides access to applications subject to

See all articles