eslint-config-mural

Mural's ESLint shared config

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
eslint-config-mural
1.1.06 years ago6 years agoMinified + gzip package size for eslint-config-mural in KB

Readme

Mural Eslint Config
An ESLint Shareable Config featuring Airbnb and some other goodies.
Using this config you won't need to install any other dependencies/plugins, and you will profit from eslint, react, imports, etc...

Usage

npm install --save-dev eslint eslint-config-mural

For a basic javascript linting, add the file .eslintrc with:
{
  "extends": ["mural"]
}

If you want to include Node.js rules:
{
  "extends": ["mural", "mural/node"]
}

For React projects:
{
  "extends": ["mural", "mural/react"]
}

And for React Native ones:
{
  "extends": ["mural", "mural/react-native"]
}

Atom Usage

Just install:

Sublime Text 3

  1. Make sure to have the Package Control installed.
  2. Install SublimeLinter.
* On OSX, make sure to have [SublimeFixMacPath](https://github.com/int3h/SublimeFixMacPath).
  1. Install and configure SublimeLinter-eslint.