1.1.0 • Published 8 years ago
eslint-config-mural v1.1.0
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-muralFor 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
- Make sure to have the Package Control installed.
- Install SublimeLinter.
- On OSX, make sure to have SublimeFixMacPath.
- Install and configure SublimeLinter-eslint.