![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.
@edenhealth/esprint
Advanced tools
esprint (pronounced E-S-sprint) speeds up eslint by running the linting engine across multiple threads. esprint sets up a server daemon to cache the lint status of each file in memory. It uses a watcher to determine when files change, to only lint files as necessary. It also has a CI mode where it does not set up a daemon and just lints in parallel.
In order to use esprint, first place an .esprintrc
file in the root directory your project. This is similar to a .flowconfig
if you use flow types. The .esprintrc
file describes which paths to lint and which paths to ignore. You can also override the port to start the background server on.
A sample .esprintrc
file:
{
"paths": [
"foo/*.js",
"bar/**/*.js"
],
"ignored": [
"**/node_modules/**/*"
],
"port": 5004
}
Options:
Name | Type | Description |
---|---|---|
paths | {Array<String>} | Glob-style paths for files to include when linting |
ignored | {Array<String>} | Glob-style paths to ignore (not watch) during dev mode for better performance (.eslintignore applies as normal) |
port | {Number} | (optional) Run the esprint background server on a specific port |
To run esprint, use the following command anywhere in your project:
$ esprint
esprint will find the root of your project automatically and lint the whole project. In default mode, esprint will start a background server to watch source files and cache lint results in memory.
By default, esprint will split up linting duties across all CPUs in your machine. You can manually override this via the cli with the following argument:
$ esprint --workers=[num_workers]
To kill the esprint server in the background, use the following command:
$ esprint stop
You can run esprint
from any subdirectory that .esprintrc
is located in, and it will still properly lint all files as specified.
In CI environments, it is not always appropriate (or necessary) to start a background server. In this case, you can use the following command, which simply lints in parallel without setting up a background server:
$ esprint check
Refer to CONTRIBUTING
Arthur Lee (@compid)
Allen Kleiner (@AK34_)
FAQs
Parallelized eslint
The npm package @edenhealth/esprint receives a total of 2 weekly downloads. As such, @edenhealth/esprint popularity was classified as not popular.
We found that @edenhealth/esprint demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.