eslint-config-ericmasiello

1.2.0 • Public • Published

What you get

Out of the box, this configuration is appropriate for any ES2015 projects running in the browser or Node. There are additional configurations you can add to extend the base configuration. These include:

  • Flow: eslint-config-ericmasiello/flow
  • React: eslint-config-ericmasiello/react
  • React Native: eslint-config-ericmasiello/react-native
  • Mocha: eslint-config-ericmasiello/mocha
  • Jest: eslint-config-ericmasiello/jest

Installation

npm:

(
  export PKG=eslint-config-ericmasiello;
  npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs npm install --save-dev "$PKG@latest"
)

Yarn:

(
  export PKG=eslint-config-ericmasiello;
  npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs yarn add -D "$PKG@latest"
)

Configure your project

Create the eslint files

touch .eslintrc.js .eslintignore

Inside of .eslintrc.js add the following:

module.exports = {
  extends: 'eslint-config-ericmasiello'
};

Note: if you wish to use any of the other addon configurations that extend the base linting ruleset, you can add them like so:

module.exports = {
  extends: [
    'eslint-config-ericmasiello',
    'eslint-config-ericmasiello/react',
    'eslint-config-ericmasiello/react-native',
    'eslint-config-ericmasiello/flow',
    'eslint-config-ericmasiello/jest',
  ]
};

Pick and choose whichever are appropriate for your project.

If you are using the React Native configuration, add the following to your .eslintignore

android
ios

Then finally, add the following script to your package.json.

"scripts": {  
  "lint": "eslint . '**/.*.js' --cache",
  "lint:fix": "npm run lint -- --fix",
},

Note this may need to be customized for your own project. See the eslint CLI documentation http://eslint.org/docs/user-guide/command-line-interface

Package Sidebar

Install

npm i eslint-config-ericmasiello

Weekly Downloads

33

Version

1.2.0

License

ISC

Last publish

Collaborators

  • ericmasiello