1. eslint-config-dev
A shareable configuration package for eslint
eslint-config-dev
Package: eslint-config-dev
Created by: jsxtools
Last modified: Thu, 27 Apr 2023 13:32:14 GMT
Version: 3.3.1
License: CC0-1.0
Downloads: 2,231
Repository: https://github.com/jsxtools/eslint-config-dev

Install

npm install eslint-config-dev
yarn add eslint-config-dev

eslint-config-dev ESLint Logo

NPM Version
Licensing

eslint-config-dev is a shareable configuration package for eslint.

Install

Add eslint and eslint-config-dev to your project:

 npm install --save-dev eslint eslint-config-dev

Then, add the following configuration to your package.json:

 {
  "eslintConfig": {
    "extends": "dev"
  }
}

Usage with TypeScript

After the previous install instructions, add typescript-eslint to your project:

 npm install --save-dev @typescript-eslint/parser @typescript-eslint/eslint-plugin

Then, add the following configuration to your package.json:

 {
  "eslintConfig": {
    "extends": "dev/ts"
  }
}

Usage with Astro

After the previous install instructions, add eslint-plugin-astro and eslint-plugin-jsx-a11y to your project:

 npm install --save-dev eslint-plugin-astro eslint-plugin-jsx-a11y

Then, add the following configuration to your package.json:

 {
  "eslintConfig": {
    "extends": "dev/astro"
  }
}

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code