Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/blimpio/eslint-config-blimp
- Owner: blimpio
- License: mit
- Created: 2016-01-30T02:59:12.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-02-12T01:32:31.000Z (almost 3 years ago)
- Last Synced: 2024-08-09T08:35:12.943Z (6 months ago)
- Topics: eslint, shareable-configs
- Language: JavaScript
- Homepage: http://blimp.io
- Size: 416 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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.