Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/blimpio/eslint-config-blimp

Our ESLint Shareable Config
https://github.com/blimpio/eslint-config-blimp

eslint shareable-configs

Last synced: 3 months ago
JSON representation

Our ESLint Shareable Config

Awesome Lists containing this project

README

        

# Blimp - ESLint Shareable Config
[![Build Status](https://travis-ci.org/GetBlimp/eslint-config-blimp.svg?branch=master)](https://travis-ci.org/GetBlimp/eslint-config-blimp)

## Install

```bash
npm install --save-dev eslint eslint-plugin-prefer-let eslint-config-blimp
```

Then, add this to your `.eslintrc` file:

```js
{
"extends": ["blimp"],
"rules": {
// your overrides
}
}
```

*Note: We omitted the `eslint-config-` prefix since it is automatically assumed by ESLint.*

Shareable configs are designed to work with the `extends` feature of `.eslintrc` files. You can learn more about [Shareable Configs](http://eslint.org/docs/developer-guide/shareable-configs) on the official ESLint website.

You can override settings from the shareable config by adding them directly into your
`.eslintrc` file.