![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@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
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.
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.
Alternatively, you can opt-in to only the more granular rulesets offered by the plugin. These include:
custom
es5
esnext
jsdoc
jsx-a11y
react
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.
Rule | Description | Recommended |
---|---|---|
dependency-group | Enforce dependencies docblocks formatting | ✓ |
gutenberg-phase | Governs the use of the process.env.GUTENBERG_PHASE constant | ✓ |
no-unused-vars-before-return | Disallow assigning variable values if unused before a return | ✓ |
react-no-unsafe-timeout | Disallow unsafe setTimeout in component | |
valid-sprintf | Enforce valid sprintf usage | ✓ |
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 | ✓ |
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" ]
}
FAQs
ESLint plugin for WordPress development.
The npm package @wordpress/eslint-plugin receives a total of 0 weekly downloads. As such, @wordpress/eslint-plugin popularity was classified as not 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 23 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.