# Remove prettier

To Remove Prettier from formatting your React.js code, you can follow the steps below:

1. Remove Prettier from your project dependencies by running the following command in your terminal:

```
npm uninstall prettier --save
```

2. Remove the below code from file .eslintrc (if eslint is not disabled)&#x20;

```json
.eslintrc
"prettier/prettier": [
      2,
      {
        "bracketSpacing": true,
        "printWidth": 140,
        "singleQuote": true,
        "trailingComma": "none",
        "tabWidth": 4,
        "useTabs": false,
        "endOfLine": "auto"
      }
    ]

```

2. &#x20;Remove Prettier configuration files from your project, such as `.prettierrc` and `.prettierignore`.
3. &#x20;If you are using a code editor extension for Prettier, disable or uninstall it from your editor.

After completing these steps, Prettier will no longer be used to format your React.js code. However, you may want to use another code formatter or configure your editor to use its built-in formatting features.<br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://codedthemes.gitbook.io/berry/v3.8.0/how-to/remove-prettier.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
