1.0.0 • Published 2 years ago

eslint-config-hanhdev v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

eslint-config-hanhdev

Hanhdev's ESLint Shareable Config

This package provides Hanhdev's shareable ESLint configuration.

Installation

  1. To use this configuration, install it as a development dependency:
# Using pnpm
pnpm add -D eslint-config-hanhdev

# Using yarn
yarn add -D eslint-config-hanhdev

# Using npm
npm install -D eslint-config-hanhdev
  1. Extend eslint-config-hanhdev: Open your ESLint configuration file and extend the eslint-config-hanhdev configuration:
// .eslintrc.js
module.exports = {
 extends: ['eslint-config-hanhdev'],
 // Add your project-specific configurations here
};