Skip to content

Latest commit

History

History
43 lines (32 loc) 路 907 Bytes

README.md

File metadata and controls

43 lines (32 loc) 路 907 Bytes

Ultra refined ESLint shareable config 馃摐

This package provides all-purpose, extensible ESLint config for ES2024+ syntax.
With an emphasis on code readability and counterchecks against implicit flaws.

Prerequisites

For Windows machines:

  • Git with Unix tools 鈽戯笍
npm config set script-shell "C:\\\Program Files\\\Git\\\bin\\\bash.exe"  
npm config ls -l | grep shell

Installation

npm install eslint-config-ultra-refined --save-dev

Install peer dependencies manually if needed.
You will see the prompt in the shell output upon installation.

Usage

In eslint.config.js file:

import ultraRefined from 'eslint-config-ultra-refined';

export default [
  ...ultraRefined,
  // your modifications
  {
    ignores: ['dist'],
    rules: {
      // your modifications
    },
  },
];