This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
irreligious/node_modules/@eslint/eslintrc
Rudis Muiznieks 1d7cc7ec9b switched from tslint to eslint 2021-09-04 22:21:14 -05:00
..
conf switched from tslint to eslint 2021-09-04 22:21:14 -05:00
lib switched from tslint to eslint 2021-09-04 22:21:14 -05:00
CHANGELOG.md switched from tslint to eslint 2021-09-04 22:21:14 -05:00
LICENSE switched from tslint to eslint 2021-09-04 22:21:14 -05:00
README.md switched from tslint to eslint 2021-09-04 22:21:14 -05:00
package.json switched from tslint to eslint 2021-09-04 22:21:14 -05:00

README.md

ESLintRC Library

This repository contains the legacy ESLintRC configuration file format for ESLint.

Note: This package is not intended for use outside of the ESLint ecosystem. It is ESLint-specific and not intended for use in other programs.

Installation

You can install the package as follows:

npm install @eslint/eslintrc --save-dev

# or

yarn add @eslint/eslintrc -D

Future Usage

Note: This package is not intended for public use at this time. The following is an example of how it will be used in the future.

The primary class in this package is FlatCompat, which is a utility to translate ESLintRC-style configs into flat configs. Here's how you use it inside of your eslint.config.js file:

import { FlatCompat } from "@eslint/eslintrc";

const compat = new FlatCompat();

export default [

    // mimic ESLintRC-style extends
    compat.extends("standard", "example"),

    // mimic environments
    compat.env({
        es2020: true,
        node: true
    }),

    // mimic plugins
    compat.plugins("airbnb", "react"),

    // translate an entire config
    compat.config({
        plugins: ["airbnb", "react"],
        extends: "standard",
        env: {
            es2020: true,
            node: true
        },
        rules: {
            semi: "error"
        }
    })
];

License

MIT License