# eslint-config-humans-frontend

> Humans front-end eslint configure.

Latest version **1.2.2** (published 2020-12-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install eslint-config-humans-frontend
pnpm add eslint-config-humans-frontend
yarn add eslint-config-humans-frontend
bun add eslint-config-humans-frontend
```

## 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.2.2 |
| Published | 2020-12-20 |
| First published | 2020-11-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Unpacked size | 4.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | martinyounghoonkim |
| Maintainers | martinyounghoonkim |
| Keywords | eslint |

## Links

- npm: https://www.npmjs.com/package/eslint-config-humans-frontend
- Repository: https://github.com/humans-corp/eslint-config-humans-frontend
- Homepage: https://github.com/humans-corp/eslint-config-humans-frontend#readme
- Issues: https://github.com/humans-corp/eslint-config-humans-frontend/issues
- npm.io page: https://npm.io/package/eslint-config-humans-frontend

## Dependencies (6)

- [eslint-plugin-react](https://npm.io/package/eslint-plugin-react.md) ^7.21.5
- [eslint-config-prettier](https://npm.io/package/eslint-config-prettier.md) ^6.15.0
- [eslint-plugin-prettier](https://npm.io/package/eslint-plugin-prettier.md) ^3.1.4
- [@typescript-eslint/parser](https://npm.io/package/@typescript-eslint/parser.md) ^4.7.0
- [eslint-plugin-react-hooks](https://npm.io/package/eslint-plugin-react-hooks.md) ^4.2.0
- [@typescript-eslint/eslint-plugin](https://npm.io/package/@typescript-eslint/eslint-plugin.md) ^4.7.0

## Alternatives

- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) — 2.9M weekly downloads
- [eslint-config-expo](https://npm.io/package/eslint-config-expo.md) — 1.5M weekly downloads
- [@matter/protocol](https://npm.io/package/@matter/protocol.md) — 63.5K weekly downloads
- [@eventcatalog/linter](https://npm.io/package/@eventcatalog/linter.md) — 24.8K weekly downloads
- [@inrupt/eslint-config-base](https://npm.io/package/@inrupt/eslint-config-base.md) — 4.5K weekly downloads

## Recent versions

- 1.2.2 (latest) — 2020-12-20
- 1.2.1 — 2020-12-20
- 1.1.1 — 2020-12-04
- 1.1.0 — 2020-12-04
- 1.0.2 — 2020-11-29
- 1.0.1 — 2020-11-21
- 1.0.0 — 2020-11-15

## README

# eslint-config-humans-frontend

## Eslint 규칙 적용
1. 모듈 및 peerDependencies 의존성을 설치한다.

```bash
$ npx install-peerdeps --dev eslint-config-humans-frontend
```

2. 적용하고자 하는 프로잭트의 eslint 환경 설정 파일에 아래와 같이 적용한다.

```js
// .eslintrc.js
module.exports = {
  extends: ["humans-frontend"],
};

```


## Prettier 규칙 적용
1. prettier 환경 설정 파일에 아래와 같이 적용한다.

```js
// prettier.config.js
module.exports = require("eslint-config-humans-frontend/prettier.config")
```

만약 해당 규칙 중 일부분 수정하고자 하는 내용이 있다면 아래와 같이 적용하여 사용할 수 있다.

```js
// prettier.config.js
module.exports = {
  ...require("eslint-config-humans-frontend/prettier.config"),
  semi: false
}
```

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