Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amilajack/eslint-config-bliss
An opinionated ESLint config general node development 🎉
https://github.com/amilajack/eslint-config-bliss
config es6 es7 eslint flow jest simple
Last synced: 11 days ago
JSON representation
An opinionated ESLint config general node development 🎉
- Host: GitHub
- URL: https://github.com/amilajack/eslint-config-bliss
- Owner: amilajack
- License: mit
- Created: 2017-01-21T05:43:20.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2023-02-05T21:42:05.000Z (almost 2 years ago)
- Last Synced: 2024-10-07T08:22:17.114Z (about 1 month ago)
- Topics: config, es6, es7, eslint, flow, jest, simple
- Language: JavaScript
- Homepage:
- Size: 45.7 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
eslint-config-bliss
=====================[![NPM version](https://badge.fury.io/js/eslint-config-bliss.svg?maxAge=25920)](http://badge.fury.io/js/eslint-config-bliss)
[![Dependency Status](https://img.shields.io/david/amilajack/eslint-config-bliss.svg?maxAge=25920)](https://david-dm.org/amilajack/eslint-config-bliss)
[![npm](https://img.shields.io/npm/dm/eslint-config-bliss.svg?maxAge=25920)](https://npm-stat.com/charts.html?package=eslint-config-bliss)This project was created to serve as a base config for **general node development**.
It adds integration with:
- [x] ES import/export
- [x] Promise's
- [x] Flow
- [x] JestIt is not intended for the browser. If you wish to use this config for browser development, make sure to install [`eslint-plugin-react`](https://github.com/yannickcr/eslint-plugin-react) and [`eslint-plugin-jsx-a11y`](https://github.com/evcohen/eslint-plugin-jsx-a11y) and add `"browser": true` to the env section of your `.eslintrc`
## Installation
1. Install `eslint-config-bliss`
```bash
npm install --save-dev eslint-config-bliss
```2. Add it to your `.eslintrc` config:
```json
{
"extends": "bliss"
}
```