Skip to content

Commit

Permalink
docs: add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
danielwaltz committed Dec 7, 2024
1 parent fe5cde5 commit 3dce66a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# @danielwaltz/eslint-config

My personal ESLint configuration.

## Installation

```shell
npx -y nypm@latest i -D @danielwaltz/eslint-config
```

## Usage

```mjs
import { danielwaltz } from "@danielwaltz/eslint-config";

export default danielwaltz();
```

## Customization

```mjs
import { danielwaltz } from "@danielwaltz/eslint-config";

export default danielwaltz([...customRules])
.prepend([...prependRules])
.append([...appendRules]);
```

0 comments on commit 3dce66a

Please sign in to comment.