GithubHelp home page GithubHelp logo

esprint's Introduction

esprint - a fast eslint runner Build Status npm version

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:

{
  "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

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, 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

Developing for esprint

Refer to CONTRIBUTING

Team

Arthur Lee (@compid)

Allen Kleiner (@AK34_)

esprint's People

Contributors

akleiner2 avatar arthuralee avatar bradencanderson avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.