Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Removes "prettier/react" from eslint config #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Removes "prettier/react" from eslint config #18

wants to merge 1 commit into from

Commits on Mar 14, 2021

  1. Removes "prettier/react" from eslint config

    Eslint config (since v 8) requires to use only "plugin:prettier/recommended" in the "extends" property, instead of "plugin:prettier/recommended", "prettier/react".
    
    The configuration file with the script (as it is now) is created with:
    
    ```js
    "extends": [
        "airbnb",
        "plugin:prettier/recommended",
        "prettier/react"
      ]
    ```
    
    And it will break the compilation process. It must be changed to:
    
    ```js
    "extends": [
        "airbnb",
        "plugin:prettier/recommended",
      ]
    ```
    
    [Here you can find official info](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md#version-800-2021-02-21).
    cristianblar committed Mar 14, 2021
    Configuration menu
    Copy the full SHA
    db5df7a View commit details
    Browse the repository at this point in the history