eslint-plugin-eslint-env
TypeScript icon, indicating that this package has built-in type declarations

0.5.0 • Public • Published

eslint-plugin-eslint-env · npm version

An ESLint plugin to lint files with eslint-env comments using the flat config.

Prerequisites

ESLint 8.21 or later is required.

Installation

npm i -D eslint-plugin-eslint-env

Usage

In your eslint.config.js file, create a new EslintEnvProcessor and add it to your configuration.

+ import { EslintEnvProcessor } from 'eslint-plugin-eslint-env';

  export default
  [
      {
          files:      ['**/*.js'],
+         processor:  new EslintEnvProcessor(),
      },
  ];

To support plugin-defined environments in eslint-env comments (e.g. /* eslint-env cypress/globals */, /* eslint-env react-native/react-native */, etc.), add a plugins setting both to the configuration and to the EslintEnvProcessor constructor options.

  import { EslintEnvProcessor } from 'eslint-plugin-eslint-env';
+ import eslintPluginCypress from 'eslint-plugin-cypress';

+ const plugins = { 'cypress': eslintPluginCypress };

  export default
  [
      {
          files:      ['**/*.js'],
+         plugins,
+         processor:  new EslintEnvProcessor({ plugins }),
      },
  ];

Dependencies (0)

    Dev Dependencies (7)

    Package Sidebar

    Install

    npm i eslint-plugin-eslint-env

    Weekly Downloads

    318

    Version

    0.5.0

    License

    ISC

    Unpacked Size

    20.2 kB

    Total Files

    6

    Last publish

    Collaborators

    • fasttime