Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@wordpress/eslint-plugin
Advanced tools
ESLint plugin including configurations and custom rules for WordPress development.
Install the module
npm install @wordpress/eslint-plugin --save-dev
Note: This package requires Node.js version with long-term support status (check Active LTS or Maintenance LTS releases). It is not compatible with older versions.
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-jsdoc
, eslint-plugin-jsx-a11y
, eslint-plugin-react
, and other similar plugins.
This preset offers an optional integration with the eslint-plugin-prettier
package that runs Prettier code formatter and reports differences as individual ESLint issues. You can activate it by installing the prettier
package separately with:
npm install prettier --save-dev
Finally, this ruleset also includes an optional integration with the @typescript-eslint/eslint-plugin
package that enables ESLint to support TypeScript language. You can activate it by installing the typescript
package separately with:
npm install typescript --save-dev
There is also recommended-with-formatting
ruleset for projects that want to ensure that Prettier and TypeScript integration is never activated. This preset has the native ESLint code formatting rules enabled instead.
Alternatively, you can opt-in to only the more granular rulesets offered by the plugin. These include:
custom
– custom rules for WordPress development.es5
– rules for legacy ES5 environments.esnext
– rules for ES2015+ environments.i18n
– rules for internationalization.jsdoc
– rules for JSDoc comments.jsx-a11y
– rules for accessibility in JSX.react
– rules for React components.test-e2e
– rules for end-to-end tests written in Puppeteer.test-unit
– rules for unit tests written in Jest.test-playwright
– rules for end-to-end tests written in Playwright.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.
Rule | Description | Recommended |
---|---|---|
data-no-store-string-literals | Discourage passing string literals to reference data stores. | |
dependency-group | Enforce dependencies docblocks formatting. | ✓ |
i18n-ellipsis | Disallow using three dots in translatable strings. | ✓ |
i18n-hyphenated-range | Disallow hyphenated numerical ranges in translatable strings. | |
i18n-no-collapsible-whitespace | Disallow collapsible whitespace in translatable strings. | ✓ |
i18n-no-flanking-whitespace | Disallow leading or trailing whitespace in translatable strings. | |
i18n-no-placeholders-only | Prevent using only placeholders in translatable strings. | ✓ |
i18n-no-variables | Enforce string literals as translation function arguments. | ✓ |
i18n-text-domain | Enforce passing valid text domains. | ✓ |
i18n-translator-comments | Enforce adding translator comments. | ✓ |
no-base-control-with-label-without-id | Disallow the usage of BaseControl component with a label prop set but omitting the id property. | ✓ |
no-unguarded-get-range-at | Disallow the usage of unguarded getRangeAt calls. | ✓ |
no-unsafe-wp-apis | Disallow the usage of unsafe APIs from @wordpress/* packagesl | ✓ |
no-unused-vars-before-return | Disallow assigning variable values if unused before a return. | ✓ |
no-wp-process-env | Disallow legacy usage of WordPress variables via process.env like process.env.SCRIPT_DEBUG . | ✓ |
react-no-unsafe-timeout | Disallow unsafe setTimeout in component. | |
valid-sprintf | Enforce valid sprintf usage. | ✓ |
wp-global-usage | Enforce correct usage of WordPress globals like globalThis.SCRIPT_DEBUG . |
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" ]
}
This is an individual package that's part of the Gutenberg project. The project is organized as a monorepo. It's made up of multiple self-contained software packages, each with a specific purpose. The packages in this monorepo are published to npm and used by WordPress as well as other software projects.
To find out more about contributing to this package or Gutenberg as a whole, please read the project's main contributor guide.
FAQs
ESLint plugin for WordPress development.
The npm package @wordpress/eslint-plugin receives a total of 86,564 weekly downloads. As such, @wordpress/eslint-plugin popularity was classified as popular.
We found that @wordpress/eslint-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.