# eslint-config-paraply

> 1. Run `npx install-peerdeps --dev eslint-config-jorgy` 2. Install ESLint plugin for VSCode 3. Add these options to your VSCode settings:

Latest version **1.0.4** (published 2020-03-15) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2020-03-15 |
| First published | 2020-03-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 6.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | jorgy93 |

## Links

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

## Recent versions

- 1.0.4 (latest) — 2020-03-15
- 1.0.3 — 2020-03-15
- 1.0.2 — 2020-03-15
- 1.0.1 — 2020-03-15
- 1.0.0 — 2020-03-15

## README

1. Run `npx install-peerdeps --dev eslint-config-jorgy`
2. Install ESLint plugin for VSCode
3. Add these options to your VSCode settings:
   
    ```json
    // This one is deprecated
    "eslint.autoFixOnSave": true,
    // Use this next one instead
    "editor.codeActionsOnSave": {
      "source.fixAll.eslint": true
    },
    "[javascript]": {
      "editor.formatOnSave": false,
    },
    "[javascriptreact]": {
      "editor.formatOnSave": false
    },
    "[typescript]": {
      "editor.formatOnSave": false,
    },
    "prettier.disableLanguages": ["js"],
    ```
4. Add `.eslintrc` to your project. ESLint has made it next to impossible to use shared configs/plugins globally, so sadly forced to using them locally. Put this in the file:
   
    ```json
    {
      "extends": ["jorgy"],
      "rules": {
        // Put your overrides here
      }
    }
    ```

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