🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

eslint-config-pi

Package Overview
Dependencies
Maintainers
3
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-pi

Purpose Industries` official eslint config

13.0.0
latest
Source
npm
Version published
Weekly downloads
10
-33.33%
Maintainers
3
Weekly downloads
 
Created
Source

eslint-config-pi

This is our eslint config at Purpose Industries.

Usage

Basic

You can use our basic rule set by following the instructions below.

It's handy when you don't want to use fancy stuff like es6 or react.

$ npm i -D eslint-config-pi eslint

Then add it to your .eslintrc

{
  "extends": "pi"
}

ES6

If you'd like to use our es6 rule set:

$ npm i -D eslint-config-pi babel-eslint eslint-plugin-babel eslint

You can add this to your .eslintrc in this way:

{
  "extends": "pi/es6"
}

React

And finally, we have a React rule set as well:

$ npm i -D eslint-config-pi eslint-plugin-react eslint

guess what:

{
  "extends": "pi/react"
}

Composition

Of course, you can use any combination of these shareable configs you want.

For example, if you want to create a project using the power es6 and react including the basics, just do the following.

Install the dependencies accordingly:

$ npm i -D eslint-config-pi babel-eslint eslint-plugin-react eslint-plugin-babel eslint

.eslintrc:

{
  "extends": [
    "pi",
    "pi/es6",
    "pi/react"
  ]
}

Notes

Eslint config properties like env or globals are strongly project specific so you have to set them in your own .eslintrc file.

For instance:

{
  "env": {
    "browser": true
  },
  "globals": {
    "React": true
  },
  "extends": [
    "pi",
    "pi/react"
  ]
}

And that's all. :sunglasses:

Happy Coding! :coffee: :octocat:

License

MIT © Purpose Industries

Keywords

eslint

FAQs

Package last updated on 21 Nov 2017

Did you know?

Socket

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.

Install

Related posts