# eslint-config-awzzm

> An ESLint configuration for modern TypeScript

Latest version **2.0.0** (published 2021-12-12) · MIT license · 0 weekly downloads

## Install

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

## 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 | 2.0.0 |
| Published | 2021-12-12 |
| First published | 2020-08-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 21.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Moritz Ruth |
| Maintainers | moritzruth |

## Links

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

## Dependencies (4)

- [eslint-plugin-import](https://npm.io/package/eslint-plugin-import.md) ^2.25.3
- [eslint-plugin-unicorn](https://npm.io/package/eslint-plugin-unicorn.md) ^39.0.0
- [@typescript-eslint/parser](https://npm.io/package/@typescript-eslint/parser.md) ^4.28.3
- [@typescript-eslint/eslint-plugin](https://npm.io/package/@typescript-eslint/eslint-plugin.md) ^4.28.3

## Recent versions

- 2.0.0 (latest) — 2021-12-12
- 1.6.0 — 2021-04-16
- 1.5.0 — 2021-02-11
- 1.4.1 — 2021-02-09
- 1.4.0 — 2021-02-09
- 1.3.0 — 2020-11-18
- 1.1.0 — 2020-10-22
- 1.0.3 — 2020-08-06
- 1.0.2 — 2020-08-04
- 1.0.1 — 2020-08-03
- 1.0.0 — 2020-08-03

## README

[**⬅️ Back to overview**](https://github.com/moritzruth/eslint-config-awzzm)

# Base Configuration
```sh
npm install --save-dev eslint-config-awzzm
# or
yarn add -D eslint-config-awzzm
```

Add it to your ESLint configuration:
```json
{
  "extends": ["awzzm"]
}
```

## Most Significant Rules
- Use double quotes (`quotes`)
```js
// ✔️ Good
const a = "value"

// ❌ Bad
const b = 'value'
```

- Don't use semicolons (`semi`)
```js
// ✔️ Good
console.log("hi!")

// ❌ Bad
console.log("hi!");
```

- Don't use default exports (`import/no-default-export`)
> Why: [1](https://basarat.gitbook.io/typescript/main-1/defaultisbad) and [2](https://blog.neufund.org/why-we-have-banned-default-exports-and-you-should-do-the-same-d51fdc2cf2ad)
```js
// ✔️ Good
export const sayHello = () => console.log("hello")

// ❌ Bad
export default () => console.log("hello")
```

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