![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
eslint-find-new-rules
Advanced tools
Find built-in ESLint rules you don't have in your custom config.
This module is deprecated in favor of eslint-find-rules
Use this for your own ESLint shareable configuration to identify built-in ESLint rules that you're not explicitly configuring.
Simply install locally as a development dependency to your project's package:
npm install --save-dev eslint-find-new-rules
The intended usage is as an npm script:
{
...
"scripts": {
"find-new-rules": "eslint-find-new-rules path/to/eslint-config"
}
...
}
Then run it with: $ npm run find-new-rules -s
(the -s
is to silence npm output).
This is really handy in an actual config module (like mine) where you could also do:
eslint-find-new-rules ./index.js
This is resolved relative to the process.cwd()
which, in the context of npm scripts is always the location of your package.json
.
You may specify any config format supported by ESLint.
You can also provide an absolute path:
eslint-find-new-rules ~/Developer/eslint-config-kentcdodds/index.js
Please note that any tested ESLint config file must reside below your project's root.
main
It will also default to the main
in your package.json
, so you can omit the argument altogether:
eslint-find-new-rules
require
d modulevar getRuleFinder = require('./eslint-find-new-rules')
var ruleFinder = getRuleFinder('path/to/eslint-config')
// default to the `main` in your `package.json`
// var ruleFinder = getRuleFinder()
// get all the current, plugin, available and unused rules
// without referring the extended files or documentation
ruleFinder.getCurrentRules()
ruleFinder.getPluginRules()
ruleFinder.getAllAvailableRules()
ruleFinder.getUnusedRules()
Thanks goes to these wonderful people (emoji key):
Kent C. Dodds 💻 📖 ⚠️ 👀 | Michał Gołębiowski 💻 | Sarbbottam Bandyopadhyay ⚠️ 👀 | Andreas Windt 💻 📖 ⚠️ | Jeroen Engels 📖 |
---|
This project follows the all-contributors specification. Contributions of any kind welcome!
Special thanks to @mgol who created the original script.
MIT
FAQs
Find built-in ESLint rules you don't have in your custom config.
The npm package eslint-find-new-rules receives a total of 9 weekly downloads. As such, eslint-find-new-rules popularity was classified as not popular.
We found that eslint-find-new-rules demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
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.
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.