Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@roadmunk/eslint-plugin-roadmunk-custom
Advanced tools
Plugin to hold custom ESLint rules for Roadmunk
Plugin to hold custom ESLint rules for Roadmunk
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-roadmunk-custom
:
$ npm install eslint-plugin-roadmunk-custom --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-roadmunk-custom
globally.
Add roadmunk-custom
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"roadmunk-custom"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"roadmunk-custom/rule-name": 2
}
}
no-lodash-isundefined
: Prevents usage of _.isUndefined
method
no-lodash-isnull
: Prevents usage of _.isNull
method.
no-align-assign
: Ensure that assignment statements are aligned
order-require
: Ensures that require statements in a file are in the correct order.
FAQs
Plugin to hold custom ESLint rules for Roadmunk
The npm package @roadmunk/eslint-plugin-roadmunk-custom receives a total of 3 weekly downloads. As such, @roadmunk/eslint-plugin-roadmunk-custom popularity was classified as not popular.
We found that @roadmunk/eslint-plugin-roadmunk-custom demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.