https://github.com/henribeck/eslint-config-henribeck
Eslint config for my personal projects
https://github.com/henribeck/eslint-config-henribeck
browser es6 eslint eslint5 flow nodejs react strict typescript
Last synced: 5 months ago
JSON representation
Eslint config for my personal projects
- Host: GitHub
- URL: https://github.com/henribeck/eslint-config-henribeck
- Owner: HenriBeck
- Created: 2018-04-14T17:14:58.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-13T07:26:22.000Z (about 7 years ago)
- Last Synced: 2025-06-01T18:44:50.192Z (about 1 year ago)
- Topics: browser, es6, eslint, eslint5, flow, nodejs, react, strict, typescript
- Language: JavaScript
- Size: 615 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eslint-config-henribeck
[](https://www.npmjs.com/package/eslint-config-henribeck)    [](https://circleci.com/gh/HenriBeck/eslint-config-henribeck)
Eslint config for my personal projects.
### Installation
```sh
yarn install eslint-config-henribeck --dev
```
### Usage
```js
module.exports = {
extends: [
'henribeck', // Base config
'henribeck/client', // When your code is running in the browser
'henribeck/server', // When your code is running on the server
'henribeck/react', // When you use react
'henribeck/flow', // When you use flow
// 'henribeck/all' for enabling all of the configs
],
};
```