# eslint-config-obytes

> eslint config obytes

Latest version **0.1.0** (published 2019-02-28) · ISC license · 0 weekly downloads

## Install

```sh
npm install eslint-config-obytes
pnpm add eslint-config-obytes
yarn add eslint-config-obytes
bun add eslint-config-obytes
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2019-02-28 |
| First published | 2019-02-28 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 11 |
| Unpacked size | 2.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | yjose |

## Links

- npm: https://www.npmjs.com/package/eslint-config-obytes
- npm.io page: https://npm.io/package/eslint-config-obytes

## Dependencies (11)

- [eslint](https://npm.io/package/eslint.md) ^5.14.1
- [prettier](https://npm.io/package/prettier.md) ^1.16.4
- [babel-eslint](https://npm.io/package/babel-eslint.md) ^10.0.1
- [eslint-plugin-jest](https://npm.io/package/eslint-plugin-jest.md) ^22.3.0
- [eslint-plugin-react](https://npm.io/package/eslint-plugin-react.md) ^7.12.4
- [eslint-config-airbnb](https://npm.io/package/eslint-config-airbnb.md) ^17.1.0
- [eslint-plugin-import](https://npm.io/package/eslint-plugin-import.md) ^2.16.0
- [eslint-config-prettier](https://npm.io/package/eslint-config-prettier.md) ^4.1.0
- [eslint-plugin-jsx-a11y](https://npm.io/package/eslint-plugin-jsx-a11y.md) ^6.2.1
- [eslint-plugin-prettier](https://npm.io/package/eslint-plugin-prettier.md) ^3.0.1
- [eslint-import-resolver-alias](https://npm.io/package/eslint-import-resolver-alias.md) ^1.1.2

## Recent versions

- 0.1.0 (latest) — 2019-02-28

## README

# eslint-config-obytes

## installation

Install the package with

`npm install eslint-config-obytes --save-dev`

or

`yarn add eslint-config-obytes -D`

## Eslint Setup

Now add the config to either the package.json:

```js
{
  "eslintConfig": {
    "extends": "obytes"
  }
}
```

or to the .eslintrc or .eslintrc.js:

```js
{
  "extends": "obytes"
}
```

## Using VSCode

- Install VSCode [ESLint package](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint)
- Setup some VS Code settings (Workspace)

```js
{
// These are all my auto-save configs
"editor.formatOnSave": true,
// turn it off for JS, we will do this via eslint
"[javascript]": {
  "editor.formatOnSave": false
},
// tell the ESLint plugin to run on save
"eslint.autoFixOnSave": true,
// if you are using prettier vscode extension
"prettier.disableLanguages": [
  "js"
],
}
```

---
_Source: https://npm.io/package/eslint-config-obytes · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
