Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!
When we start a new project, syntax check and style format is important but not easy to config. That...
Setting up ESLint and Prettier in a TypeScript project can greatly enhance your development...
How to set up eslint and prettier The purpose of this blog is to show how to setup eslint...
Last September 23rd the ESLint team released the new version, 9.11.1. As we grow as developers and...
I recently upgraded all the packages in our very large monorepo to the Ember 6.1 app blueprint. The...
When working on a project, maintaining code quality and consistency is just as important as writing...
Keeping code clean and consistent is important in any project. That’s why we use tools like linters...
Learn how to enhance your TypeScript project by integrating JavaScript Standard Style rules using...
This guide will walk you through configuring a Vue.js project with ESLint 9.13.0, Prettier, and...
Internet está lleno de tutoriales sobre cómo iniciar un proyecto web con React, sin embargo la...
My config to enforce code style in a project with Next.JS, Tailwind, Drizzle, and - obviously - Typescript
ESLint is a potent tool, but you cannot create a good plugin because the documentation doesn't...
ESLint You’ve probably used ESLint (or at least heard of it) in your JavaScript or...
Introduction Portuguese version: Typescript-eslint + prettier para padronização de código...
As a front-end developer with over six years of experience, I’ve seen my fair share of TypeScript...
After extensive research and hands-on work, I've refined the best approach to set up a new Node.js...
In 2022, ESLint (v8.21.0) introduced a new configuration system nicknamed "Flat Config." This post...
If you’re building a Next.js project, you already know how important clean, consistent, and...
First of all, lets create a nextJs application: npx create-next-app@latest Then add this package to...
As our team is growing, we need more functional and aesthetic rules to keep our codebase less...
Introduction In last month's article, I presented the setup of Eslint with Prettier for a...
Creating a React application with Vite has become the preferred way over using create-react-app due...
El pasado 23 de septiembre el equipo de ESLint liberó la nueva versión, la 9.11.1. En la medida en...
Introdução English version: Typescript-eslint + prettier for code standardization in React...
Writing clean and consistent code is super important, not just for you, but for your whole team....
Uno de los aspectos más importantes al trabajar en equipo en el desarrollo de software es la...
Introdução Durante o processo de desenvolvimento, torna-se importante a definição de um...
Every now and then, I start a new React project using my favorite setup: Development: Vite +...
#Step 1 : Initialize the project mkdir my-project cd my-project npm init -y Enter...