React + TypeScript + ESLint + Prettier Full Setup ✈

Table of Content

πŸ“Œ Introduction

πŸ“Œ Why this configuration πŸ€”?

πŸ“Œ Configuration πŸ› 

πŸ‘‰ Configure ESLint on the project

πŸ‘‰ Configure Prettier on the project

πŸ“Œ Start Project

πŸ“Œ Thank you

Introduction

Hello amazing develop…


This content originally appeared on DEV Community and was authored by SUCHINTAN DAS

Table of Content


πŸ“Œ Introduction

πŸ“Œ Why this configuration πŸ€”?

πŸ“Œ Configuration πŸ› 

πŸ‘‰ Configure ESLint on the project

πŸ‘‰ Configure Prettier on the project

πŸ“Œ Start Project

πŸ“Œ Thank you


Introduction

Introduction

Hello amazing developer πŸ§‘β€πŸ’», before digging into this topic let me give you a small introduction and so instructions. Don't worry it would be quick and crisp πŸ˜‰.

I am Suchintan Das, a Full Stack Developer currently working over two startups. I have been into web development for past two years.

Connect me on πŸ‘‰Linkedin

Note: I will be using a Windows machine πŸ’» while doing the process. So, there can be some case where the commands may differ for you if using a different machine. Please help yourself out in that case, though I will try my best to cover all such commands.


Why this configuration πŸ€”?

Before starting with this tutorial, it's important to understand why we need this configuration. So, let me introduce you to these stacks individually and help you understand their benefits.

ESLint

Have you ever faced issues due to a messy code written by someone and not following the rules that are supposed to be kept in mind while writing the code πŸ₯²?

A small example -

import axios from 'axios'
const component = () => {
}

Like here the developer forgot to add a line gap between imports and the main functional component. A similar problem is pushing a lot of console logs on production.

These things are small but very irritating when the codebase evolves and many lines of code comes into it πŸ“š. And yes , to maintain clean code they don't need to put that much efforts, just following some rules every time make a codebase very clean 🧹.

That's the idea of ESLint and yes, you need it to make your codebase very sweet for any new developer to code πŸ‘.

Prettier

Has the same idea as that of ESLint but their combination is really robust. Many developers likes ESLint + Prettier configuration very good when you want to make you codebase very easy for debugging and onboard .

TypeScript

I know, most of you guys would already are familiar with this framework. It's very famous after all 🀷. But here's a small introduction for this framework.

Want to follow a structured format for your codebase where all the props, function returns etc. are setup beforehand so that , it avoids mistake ? Yes, I know it's very awesome to work on a project where everything works in a structured way and if anything goes out of the structure, you get an error. Saves really a lot of time for debugging❗

TypeScript has interfaces, function types and many more. A small peak of it is here.

apiCall.ts πŸ“

import axios from "axios";
import { AuthLogin, AuthRegister } from "../models/Auth";
import setAuthToken from "../utils/controllers/setAuthController";

const baseUrl: string = String(process.env.REACT_APP_SERVER_URL);

export const loginauth = async (email: string, password: string) => {
  //   console.log(baseUrl);
  const options: AuthLogin = {
    method: "post",
    url: `${baseUrl}auth/login`,
    data: {
      email,
      password,
    },
  };
  try {
    axios
      .request(options)
      .then((response) => {
        if (response?.status === 200) {
          setAuthToken(response?.data?.token);
        }
        return response?.status as Number;
      })
      .catch();
  } catch (e) {
    // console.log(e);
  }
};

model.ts πŸ“

export interface AuthLogin {
  method: string;
  url: string;
  data: AuthLoginBody;
}

export interface AuthLoginBody {
  email: string;
  password: string;
}

controller.ts πŸ“

const setAuthToken = (token: string) => localStorage.setItem("idtoken", token);

export default setAuthToken;


Just see how model defines the structure of the body of api call, controller defines the flow of token and main function connects the flow. How easily you can debug in such a structured codebase πŸ™‚

React

This framework is alse one of the famous among developers. If someone wants to build a Single Page Application with JavaScript and that also very easily. Just use this framework. It's quite good for new users, you divide a page into components so no more reductant code. Use props and write JavaScript logics and HTML code ( It follows JSX which is similar to HTML with some small changes ) .

Believe me ! You will fall in love with it 😍, just give it a try.

A small peak into the file structure in React-

File Structure

Configuration πŸ› 

Yes, now it's time to start the whole configuration!

There are some prerequisites which you would need on your machine-

  1. Nodejs installed on the system.
  2. Git installed on your system.A reference blog if needed help blog on git and github
  3. VSCode installed on your system. You can have your own choice as well.

Cool ! Let's start...

  • React TypeScript Template download

React TypeScript Template
Here are the commands πŸ‘‡

----------------npm users-----------------------
npx create-react-app ./ --template typescript

----------------yarn users----------------------
yarn create react-app ./ --template typescript

It would take 1-2 minutes to download the same. If you are facing EPERM error here's a quick fix for you !

For Windows

  1. Open cmd as administrator.
  2. If project is in different drive then use this to switch the drive and navigate to the location cd /d d:\<project_location>
  3. Use the commands here to download the template.


  • Configure ESLint on the project

ESLint

Open your terminals and let's configure ESLint on the project.

Use the command πŸ‘‡

---------npm users-------------
npm init @eslint/config

---------yarn users-------------
yarn create @eslint/config

And here's the answer to the CLI of ESLint. Let's answer them together in the same flow.

ESLint Questions 1
ESLint Questions 2
ESLint Questions 3
ESLint Questions 4
ESLint Questions 5

You can choose some other options on these questions as well based on your needs.

You can see a new file πŸ“ got created on your root directory named eslintrc.json. This is a sign that the installation is successful !

Note: Here we are using the Airbnb template as it is widely known in the developers community. You can have some different options as well. https://github.com/airbnb/javascript to know more ..

Airbnb

There are some modules you would need while working with Airbnb . Use the following commands to install them :

npm install eslint-config-airbnb-typescript --save-dev

Now you would have to update some files :

Update the file with these configs πŸ› 

eslintrc.json πŸ“

{
    "env": {
        "browser": true,
        "es2021": true,
        "jest": true
    },
    "extends": [
        "react-app",
        "react-app/jest",
        "airbnb",
        "airbnb-typescript",
        "plugin:import/typescript"
    ],
    "parser": "@typescript-eslint/parser",
    "parserOptions": {
        "ecmaFeatures": {
            "jsx": true
        },
        "ecmaVersion": "latest",
        "sourceType": "module",
        "project": "./tsconfig.json"
    },
    "plugins": [
        "react",
        "@typescript-eslint"
    ],
    "rules": {}
}

package.json πŸ“

Update the scripts with this

"scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject",
    "lint": "eslint .",
    "lint:fix": "eslint --fix ."
  },

Let's test πŸ”¬ the ESLint :

Use npm run lint and this should be there on your terminal.

ESLint first command

Nice ! So, now you can see there are already some linting problems in the template of react for TypeScript. Don't worry we will head to it and discuss how to fix them πŸ› .

But first let us help us out using the command πŸ‘‰npm run lint:fix , this command will run the traditional fix provided by ESLint. Like single comma's to double , but it can't fix the major ones.

ESLint Fix Command

Nice ! It fixed all those errors for you. Yes, ESLint does help you out with fixing these error if you are not able to do so 🀯.

You can control rules over ESLint from eslintrc.json. Here's some of the rules that I apply mostly and you can update the file with this -

eslintrc.json update rules πŸ“:

    "rules": {
        "react/react-in-jsx-scope": ["off"],
        "react/jsx-uses-react": ["off"],
        "react/jsx-props-no-spreading": ["warn"],
        "react/no-unescaped-entities": ["off"]
    }

Let's dive into Prettier now 🌊!


  • Configure Prettier on the project

In tech where the things start, it end on that point only. So, let's move back to our terminals and configure prettier !

Prettier

Let's install all the dependencies for the same πŸ‘‡

---------------------npm users------------------------------------
npm install prettier eslint-config-prettier eslint-plugin-prettier --save-dev

---------------------yarn users-----------------------------------
yarn add prettier eslint-config-prettier eslint-plugin-prettier --dev

I know this time we don't have any file on our root directory like eslint. So, let's create one with the name .prettierrc. And, yes the purpose of this file is also same as the earlier one. This is the config file and it would have all the rules and controls you want to have in your project !

And let's fill it with this code -

.prettierrc πŸ“

{
    "tabWidth": 2,
    "semi": true,
    "singleQuote": false,
    "trailingComma": "all",
    "printWidth": 80,
    "useTabs": false,
    "endOfLine":"auto"
  }

You can always have your own configs πŸ› . For this tutorial I am using the config which is widely used by most developers πŸ§‘β€πŸ’».

Let's update the eslintrc.json as well so that it uses prettier now -

eslintrc.json πŸ“

{
    "env": {
        "browser": true,
        "es2021": true,
        "jest": true
    },
    "extends": [
        "react-app",
        "react-app/jest",
        "airbnb",
        "airbnb-typescript",
        "plugin:import/typescript",
        "plugin:prettier/recommended"
    ],
    "parser": "@typescript-eslint/parser",
    "parserOptions": {
        "ecmaFeatures": {
            "jsx": true
        },
        "ecmaVersion": "latest",
        "sourceType": "module",
        "project": "./tsconfig.json"
    },
    "plugins": [
        "react",
        "@typescript-eslint",
        "prettier"

    ],
    "rules": {
        "react/react-in-jsx-scope": ["off"],
        "react/jsx-uses-react": ["off"],
        "react/jsx-props-no-spreading": ["warn"],
        "react/no-unescaped-entities": ["off"]
    }
}

While coding you may face some issues when you need to update the structure of the file as that of prettier which can go tiring. Here's a small extension that I use personally and this would make your life easier. So, install it !

Prettier Extension

To Format the document shortcut keys are πŸ‘‡

Windows-
Shift + Alt + F

Mac-
Shift + Options + F

Linux-
Ctrl + Shift + I

Manually-
Right Click + "Format document with..." + Prettier

So, if you face any errors of prettier don't forget to use this commands to format the document correctly.

Yes, you are done with the configuration.


Start Project

Use the command πŸ‘‰npm start and run the project. There will be couple of prettier errors. To fix them go on the file and do the format document with Prettier extension.

And this should start your project like this -

Start Project

Here's the link to the GitHub Repository


Thank you

You have made it till the end of this blog πŸ€—. More such blogs are on the line .

It would be encouraging if a small comment would be there on the blog. I go through each one of them so do comment πŸ˜‰.

If you want to get a notification πŸ”” when it would be published , don't forget to tap on the follow button ☝.

And at last I want to say πŸ‘‡

Keep coding #️⃣ , keep rocking πŸš€


This content originally appeared on DEV Community and was authored by SUCHINTAN DAS


Print Share Comment Cite Upload Translate Updates
APA

SUCHINTAN DAS | Sciencx (2022-06-14T09:08:12+00:00) React + TypeScript + ESLint + Prettier Full Setup ✈. Retrieved from https://www.scien.cx/2022/06/14/react-typescript-eslint-prettier-full-setup-%e2%9c%88/

MLA
" » React + TypeScript + ESLint + Prettier Full Setup ✈." SUCHINTAN DAS | Sciencx - Tuesday June 14, 2022, https://www.scien.cx/2022/06/14/react-typescript-eslint-prettier-full-setup-%e2%9c%88/
HARVARD
SUCHINTAN DAS | Sciencx Tuesday June 14, 2022 » React + TypeScript + ESLint + Prettier Full Setup ✈., viewed ,<https://www.scien.cx/2022/06/14/react-typescript-eslint-prettier-full-setup-%e2%9c%88/>
VANCOUVER
SUCHINTAN DAS | Sciencx - » React + TypeScript + ESLint + Prettier Full Setup ✈. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/06/14/react-typescript-eslint-prettier-full-setup-%e2%9c%88/
CHICAGO
" » React + TypeScript + ESLint + Prettier Full Setup ✈." SUCHINTAN DAS | Sciencx - Accessed . https://www.scien.cx/2022/06/14/react-typescript-eslint-prettier-full-setup-%e2%9c%88/
IEEE
" » React + TypeScript + ESLint + Prettier Full Setup ✈." SUCHINTAN DAS | Sciencx [Online]. Available: https://www.scien.cx/2022/06/14/react-typescript-eslint-prettier-full-setup-%e2%9c%88/. [Accessed: ]
rf:citation
» React + TypeScript + ESLint + Prettier Full Setup ✈ | SUCHINTAN DAS | Sciencx | https://www.scien.cx/2022/06/14/react-typescript-eslint-prettier-full-setup-%e2%9c%88/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.