Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pinterest/esprint
Fast eslint runner
https://github.com/pinterest/esprint
eslint javascript linter
Last synced: about 14 hours ago
JSON representation
Fast eslint runner
- Host: GitHub
- URL: https://github.com/pinterest/esprint
- Owner: pinterest
- License: apache-2.0
- Created: 2016-12-09T00:13:57.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-09-06T04:16:42.000Z (4 months ago)
- Last Synced: 2024-10-29T15:26:08.768Z (about 2 months ago)
- Topics: eslint, javascript, linter
- Language: JavaScript
- Homepage:
- Size: 1.09 MB
- Stars: 661
- Watchers: 15
- Forks: 54
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-list - esprint
- awesome-eslint - esprint - Run ESLint across multiple threads. (Tools / Testing Tools)
README
# esprint - a fast eslint runner [![GitHub Workflow Status]()](https://github.com/pinterest/esprint/actions?query=workflow%3A%22Main+workflow+%28PR%29%22) [![npm version](https://img.shields.io/npm/v/esprint)](https://www.npmjs.com/package/esprint)
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.## Configuration
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:```json
{
"paths": ["foo/*.js", "bar/**/*.js"],
"ignored": ["**/node_modules/**/*"],
"port": 5004
}
```Options:
| Name | Type | Description |
| :---------------: | :---------------: | :---------------------------------------------------------------------------------------------------------------- |
| **`paths`** | `{Array}` | Glob-style paths for files to include when linting |
| **`ignored`** | `{Array}` | 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 |
| **`formatter`** | `{string}` | (optional) Use a specific output format - default: stylish |
| **`quiet`** | `{boolean}` | (optional) Report errors only - default: false |
| **`maxWarnings`** | `{number}` | (optional) The max number of warnings that should trigger a failure. The default is to not fail on warnings |## Usage
### Default mode
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 & clear the cache, 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.
### CI Mode
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
```### CLI Options
#### Auto fix
To use the eslint auto fix feature, add `--fix` when starting the server
```
esprint --fix
```or when running in CI mode
```
esprint check --fix
```#### Debug
Print debug output for esprint. Should only be used when you're running into issues
```
esprint --esprintDebug
```#### Disable watchman
```
esprint --noWatchman
```## Developing for esprint
Refer to [CONTRIBUTING](https://github.com/pinterest/esprint/blob/master/CONTRIBUTING.md)