@ariel-salgado/eslint-config 0.5.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/index.d.mts +2228 -1764
- package/dist/index.mjs +144 -498
- package/dist/lib-Dbi8MGGA.mjs +11438 -0
- package/package.json +46 -127
package/README.md
CHANGED
|
@@ -18,14 +18,14 @@ Some of the main features, inherited directly from `@antfu/eslint-config`:
|
|
|
18
18
|
### Installation
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
|
|
21
|
+
bun add -D eslint @ariel-salgado/eslint-config
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
### Basic usage
|
|
25
25
|
|
|
26
26
|
```js
|
|
27
27
|
// eslint.config.js
|
|
28
|
-
import defineConfig from '@ariel-salgado/eslint-config';
|
|
28
|
+
import { defineConfig } from '@ariel-salgado/eslint-config';
|
|
29
29
|
|
|
30
30
|
export default defineConfig();
|
|
31
31
|
```
|