@cloudflight/eslint-plugin-node

1.2.0 • Public • Published

@cloudflight/eslint-plugin-node

The Cloudflight ESLint Plugin for Node provides multiple configurations of ESLint rules recommended by Cloudflight.

You can find the directory of all rules including their reasoning here.

Dependencies

The following dependencies are required:

"eslint": ">=9.0.0 < 10.0.0"

Usage

In your package.json add the following:

"devDependencies": {
    ...
    "@cloudflight/eslint-plugin-node": "<version>",
    ...
}

Now open your eslint.config.mjs and add one of the configurations:

import { cloudflightNodeConfig } from '@cloudflight/eslint-plugin-node';
import { includeIgnoreFile } from '@eslint/compat';
import { dirname, normalize, resolve } from 'node:path';
import { fileURLToPath } from 'node:url';

const directory = dirname(fileURLToPath(import.meta.url));
const gitignorePath = normalize(resolve(directory, '.gitignore'));

export default [
    includeIgnoreFile(gitignorePath),
    ...cloudflightNodeConfig({
        rootDirectory: import.meta.dirname,
    }),
];

See Custom Configuration for more complicated project setups.

Readme

Keywords

Package Sidebar

Install

npm i @cloudflight/eslint-plugin-node

Weekly Downloads

696

Version

1.2.0

License

Apache-2.0

Unpacked Size

18 kB

Total Files

11

Last publish

Collaborators

  • cloudflight-admin
  • jenglisch