Socket
Book a DemoInstallSign in
Socket

@rnx-kit/eslint-plugin

Package Overview
Dependencies
Maintainers
7
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rnx-kit/eslint-plugin

A set of ESLint rules for React developers

latest
Source
npmnpm
Version
0.9.3
Version published
Weekly downloads
6K
17.23%
Maintainers
7
Weekly downloads
 
Created
Source

@rnx-kit/eslint-plugin

Build npm version

@rnx-kit/eslint-plugin is a set of configurations and rules that can be used as is, or extended in your own ESLint config.

Note that this plugin requires the new ESLint configuration format. If you still rely on the previous format, use version 0.5.x instead.

Install

yarn add @rnx-kit/eslint-plugin --dev

or if you're using npm:

npm add --save-dev @rnx-kit/eslint-plugin

Usage

This ESLint plugin exports multiple configurations. For instance, to use the recommended configuration, you can re-export it in your flat config like below:

module.exports = require("@rnx-kit/eslint-plugin/recommended");

Alternatively, if you want to add customizations:

const rnx = require("@rnx-kit/eslint-plugin");
module.exports = [
  ...rnx.configs.recommended,
  {
    rules: {
      "@rnx-kit/no-const-enum": "error",
      "@rnx-kit/no-export-all": "error",
      // Mores rules ...
    },
  },
];

If you're just interested in the rules, you can use it as a plugin and enable the rules you're interested in:

module.exports = [
  {
    plugins: {
      "@rnx-kit": require("@rnx-kit/eslint-plugin"),
    },
    rules: {
      "@rnx-kit/no-const-enum": "error",
      "@rnx-kit/no-export-all": "error",
      // Mores rules ...
    },
  },
];

Supported Rules

  • ✓: Enabled with @rnx-kit/eslint-plugin/recommended
  • 🔧: Fixable with --fix
🔧RuleDescription
@rnx-kit/no-const-enumdisallow const enum (why is it bad?)
🔧@rnx-kit/no-export-alldisallow export * (why is it bad?)
@rnx-kit/no-foreach-with-captured-variablesdisallow forEach with outside variables; JavaScript is not efficient when it comes to using variables defined outside of its scope, and repeatedly calling that function can lead to performance issues. By using a for...of loop, you can avoid these performance pitfalls and also it is easier to debug.

Keywords

eslint

FAQs

Package last updated on 03 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts