eslint-config-turbo-next
v1.0.2
Published
[![Status](https://img.shields.io/badge/status-active-success.svg)]() [![License](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE)
Downloads
5
Readme
eslint-config-turbo-next
Description
The eslint-config-turbo-next project is a custom ESLint configuration designed to improve code quality and maintain consistent style in a project.
This .eslintrc.js file includes custom rules covering aspects such as code formatting, proper variable and function usage, and prevention of undesirable practices.
Installation
To use this ESLint configuration in your project, follow these steps:
- NPM
npm install eslint-config-turbo-next --save-dev
- YARN
yarn add eslint-config-turbo-next -D
Usage
Add turbo-next
to the extends section of your eslint configuration file. You can omit the eslint-config-
prefix:
{
"extends": ["turbo-next"]
}