Socket
Socket
Sign inDemoInstall

eslint-plugin-eslint-plugin

Package Overview
Dependencies
Maintainers
0
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-eslint-plugin

An ESLint plugin for linting ESLint plugins


Version published
Weekly downloads
200K
decreased by-3.41%
Maintainers
0
Weekly downloads
 
Created

What is eslint-plugin-eslint-plugin?

eslint-plugin-eslint-plugin is an ESLint plugin designed to help developers create and maintain their own ESLint plugins. It provides rules and utilities that enforce best practices and catch common mistakes in ESLint plugin development.

What are eslint-plugin-eslint-plugin's main functionalities?

Rule to enforce meta property in rule definitions

This feature ensures that each rule in your ESLint plugin has a `meta.docs.url` property, which is useful for documentation purposes.

module.exports = {
  rules: {
    'require-meta-docs-url': require('./lib/rules/require-meta-docs-url')
  }
};

Rule to enforce correct rule tester usage

This feature checks that your rule tests are consistent and follow best practices, ensuring that your tests are reliable and maintainable.

module.exports = {
  rules: {
    'consistent-output': require('./lib/rules/consistent-output')
  }
};

Rule to enforce correct use of context.report

This feature ensures that you are using the `context.report` API correctly, avoiding deprecated methods and promoting the use of the latest API.

module.exports = {
  rules: {
    'no-deprecated-report-api': require('./lib/rules/no-deprecated-report-api')
  }
};

Other packages similar to eslint-plugin-eslint-plugin

Keywords

FAQs

Package last updated on 25 Jun 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc