npm.io
4.1.10 • Published 7h ago

eslint-config-ultra-refined

Licence
MIT
Version
4.1.10
Deps
0
Size
14 kB
Vulns
0
Weekly
0
Stars
4

Ultra refined ESLint shareable config

This package provides all-purpose, extensible ESLint config for ESNext syntax.
Optimized for readability and resilience against implicit code flaws.

Installation

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

In eslint.config.js file:

import ultraRefined from 'eslint-config-ultra-refined';
import {
  defineConfig,
  globalIgnores,
} from 'eslint/config';

export default defineConfig([
  globalIgnores(['dist']),
  {
    extends: [ultraRefined],
    // Your modifications
    rules: {
      // Your modifications
    },
  },
]);

Keywords