# @transmute/eslint-config

> Transmute eslint configs for React and Node

Latest version **0.1.0** (published 2020-01-20) · ISC license · 0 weekly downloads

## Install

```sh
npm install @transmute/eslint-config
pnpm add @transmute/eslint-config
yarn add @transmute/eslint-config
bun add @transmute/eslint-config
```

## 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 | 2020-01-20 |
| First published | 2019-10-28 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | gjgd, or13 |

## Links

- npm: https://www.npmjs.com/package/@transmute/eslint-config
- Repository: https://github.com/transmute-industries/eslint-config
- Homepage: https://github.com/transmute-industries/eslint-config#readme
- Issues: https://github.com/transmute-industries/eslint-config/issues
- npm.io page: https://npm.io/package/@transmute/eslint-config

## Recent versions

- 0.1.0 (latest) — 2020-01-20
- 0.0.10 — 2020-01-20
- 0.0.9 — 2020-01-15
- 0.0.8 — 2019-12-24
- 0.0.7 — 2019-10-28

## README

# @transmute/eslint-config

```
npm i @transmute/eslint-config --save-dev
```

This config setup is meant to be used with VSCode.

Copy `./setup-files` to working directory, next to package.json.

### Manual Setup

Create `.vscode/settings.json` :

```
{
  "editor.formatOnSave": true,
  "javascript.format.enable": false,
  "javascript.referencesCodeLens.enabled": true,
  "editor.rulers": [80],
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.codeLens": false
}

```

Create `.vscode/extensions.json` :

```
{
  // See http://go.microsoft.com/fwlink/?LinkId=827846
  // for the documentation about the extensions.json format
  "recommendations": [
    // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
    "esbenp.prettier-vscode",
    "codezombiech.gitignore",
    "EditorConfig.EditorConfig"
  ]
}
```

Create `prettier.config.js` :

```
// eslint-disable-next-line
module.exports = require('@transmute/eslint-config/prettier.config.json');
```

Create `.eslintrc` :

```
{
  "extends": ["@transmute/eslint-config/eslint.config.react.json"]
}
```

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