Prettier
2 minutes of reading
Prettier is an automatic code formatting tool that has recently gained a lot of popularity among developers. It allows to unify code writing styles and therefore contributes to better readability and easier maintenance of projects.
The readability of code is very important for any project, especially one that we write as a team. A well-formatted code is one that sticks to the right rules and is used by all people in the project, which is why code formatters were created. Such a tool formats the code for us and sticks to the rules that we are able to define ourselves together with the team. It is hard to imagine writing an application without a code formatter, so in this article I will introduce the most popular code formatter which is Prettier.
Prettier not just for JavaScript
Currently, Prettier supports not only JavaScript, but also: JSX, Angular, Vue, Flow, TypeScript, CSS, LESS, SCSS, HTML, Ember, JSON, GraphQL, Markdown, YAML.
Prettier vs. ESLint
ESLint is a static code analysis tool that finds code errors or bad practices and is able to fix some of these errors itself, while Prettier is used for code formatting. In short, we use Prettier to simplify code formatting and ESLint to catch errors. Therefore, it is worth using both tools. It is also worth mentioning that ESLint only works with JavaScript.
Prettier rules
Using Prettier, we are able to define the appropriate rules for our project ourselves, to do this we need to configure Prettier in the .prettierrc file by adding new rules, e.g.:
{
"printWidth": 80, // określa długość linii
"tabWidth": 2, // określa liczbę spacji na poziomie wcięcia
"singleQuote": true // używa pojedynczych cudzysłowów
"semi": true // dodaje średnik na końcu linii
"useTabs": true // wcięcia linii są stosowane za pomocą tabulatorami zamiast spacji
}
Installing Prettier
To add Prettier to our project, use the package manager to run the following commands:
yarn add --dev --exact prettier
Or if you use the Visual studio code editor, just add a new extension called "Prettier - Code formatter".
Summary
Thanks to the development of tools like Prettier, we no longer need to manually format code, which saves us some time and allows us to focus more on coding. It's also worth looking into a tool like husky, which allows us to integrate with Git hooks, allowing us to automate Prettier and ESLint.
Related articles
Why Tailwind UI is a Must-Know for Modern Web Developers?
26 Oct 2023
In the realm of modern web development, the need for efficient tools is increasingly exigent. Harnessing the power of such an asset, Tailwind UI is emerging as a comprehensive solution. Streamlining the development process, it allows to make compelling web interfaces with ease. This write-up aims to explore the quintessence of Tailwind UI in today's digital age.

Understanding SOAP: Key Concepts and Practical Applications
16 Aug 2023
Understanding SOAP (Simple Object Access Protocol) can often prove daunting. This article seeks to demystify SOAP, exploring its core principles and its practical applications. By dissecting its structure and peeling back its layers, we can unravel its true potential and learn how to harness its capabilities in an efficient manner.
Influence of Google Fonts on UX and UI Design
3 Aug 2023
In the fusion of UX and UI design, nothing is trivial. Each element, including typography, plays a pivotal role in engaging user interaction. This article focuses on understanding the crucial influence of Google Fonts on UX & UI design. We delve into its impact on aesthetics, functionality, and overall user experience.
Human-Centered Design: Pivotal Player in the Arena of Modern Technology Development
17 Jul 2023
Human-Centered Design, a novel paradigm in modern technology development, is ensuring a revolution in software designs by prioritizing the user experience. As a core approach to problem-solving, it carefully blends technology with human needs to deliver highly-effective and usable solutions.
Unleashing the Power: A Comprehensive Guide to Mastering Affiliate Marketing
17 Jul 2023
This guide will embark you on a journey through the realm of Affiliate Marketing, illuminating its potency and progressive ways to harness it. Step into the universe where partnerships flourish, revenues stream, and brands expand, using dynamic marketing strategies.
Mastering the Art: Effective Strategies for Lead Nurturing in Tech Industries
17 Jul 2023
Lead nurturing in the tech industry is akin to conducting a symphony, where every note must be played in perfect harmony. It requires patience, precision, and a keen sense of timing. This article gears towards deciphering strategies that can help tech businesses skilfully navigate this intricate realm, fostering stronger customer connections and maximizing lead conversion.
Unleashing the Potential of CKEditor for Seamless Content Creation
5 Jul 2023
In this article, we will explore how to unleash the full potential of CKEditor for seamless content creation. CKEditor is a powerful and versatile text editor that offers a wide range of features and customization options. By understanding its capabilities and implementing best practices, we can optimize content creation processes and enhance the overall user experience. Let's dive in and discover the possibilities that CKEditor brings to the table!
Show all articles