🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@aarondewes/wp-eslint-plugin

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@aarondewes/wp-eslint-plugin

ESLint plugin for WordPress development.

unpublished
latest
Source
npmnpm
Version
10.0.1
Version published
Maintainers
1
Created
Source

ESLint Plugin

ESLint plugin including configurations and custom rules for WordPress development.

Installation

Install the module

npm install @wordpress/eslint-plugin --save-dev

Note: This package requires node 12.0.0 or later, and npm 6.9.0 or later. It is not compatible with older versions.

Usage

To opt-in to the default configuration, extend your own project's .eslintrc file:

{
	"extends": [ "plugin:@wordpress/eslint-plugin/recommended" ]
}

Refer to the ESLint documentation on Shareable Configs for more information.

The recommended preset will include rules governing an ES2015+ environment, and includes rules from the eslint-plugin-jsx-a11y, eslint-plugin-react, and eslint-plugin-prettier projects. It also includes an optional integration with @typescript-eslint/eslint-plugin that gets activated when the typescript package is installed in the project.

There is also recommended-with-formatting ruleset for projects that want to opt out from Prettier. It has the native ESLint code formatting rules enabled instead.

Rulesets

Alternatively, you can opt-in to only the more granular rulesets offered by the plugin. These include:

  • custom
  • es5
  • esnext
  • jsdoc
  • jsx-a11y
  • react
  • i18n
  • test-e2e
  • test-unit

For example, if your project does not use React, you could consider extending including only the ESNext rules in your project using the following extends definition:

{
	"extends": [ "plugin:@wordpress/eslint-plugin/esnext" ]
}

These rules can be used additively, so you could extend both esnext and custom rulesets, but omit the react and jsx-a11y configurations.

The granular rulesets will not define any environment globals. As such, if they are required for your project, you will need to define them yourself.

Rules

RuleDescriptionRecommended
data-no-store-string-literalsDiscourage passing string literals to reference data stores
dependency-groupEnforce dependencies docblocks formattingâś“
gutenberg-phaseGoverns the use of the process.env.GUTENBERG_PHASE constantâś“
no-base-control-with-label-without-idDisallow the usage of BaseControl component with a label prop set but omitting the id propertyâś“
no-unguarded-get-range-atDisallow the usage of unguarded getRangeAt callsâś“
no-unused-vars-before-returnDisallow assigning variable values if unused before a returnâś“
react-no-unsafe-timeoutDisallow unsafe setTimeout in component
valid-sprintfEnforce valid sprintf usageâś“
i18n-ellipsisDisallow using three dots in translatable stringsâś“
i18n-no-collapsible-whitespaceDisallow collapsible whitespace in translatable stringsâś“
i18n-no-placeholders-onlyPrevent using only placeholders in translatable stringsâś“
i18n-no-variablesEnforce string literals as translation function argumentsâś“
i18n-text-domainEnforce passing valid text domainsâś“
i18n-translator-commentsEnforce adding translator commentsâś“

Legacy

If you are using WordPress' .jshintrc JSHint configuration and you would like to take the first step to migrate to an ESLint equivalent it is also possible to define your own project's .eslintrc file as:

{
	"extends": [ "plugin:@wordpress/eslint-plugin/jshint" ]
}



Code is Poetry.

This fork contains a few cleanups and one style change by not requiring and remooving spaces around parentheses.

Keywords

wordpress

FAQs

Package last updated on 03 Jun 2021

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