@fabdeh/eslint-config 0.9.0-beta.3 → 0.9.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 -1
- package/dist/index.d.mts +2158 -2083
- package/dist/index.mjs +128 -145
- package/package.json +20 -21
package/README.md
CHANGED
|
@@ -179,6 +179,8 @@ Going more advanced, you can also import fine-grained configs and compose them a
|
|
|
179
179
|
We wouldn't recommend using this style in general unless you know exactly what they are doing, as there are shared options between configs and might need extra care to make them consistent.
|
|
180
180
|
|
|
181
181
|
```js
|
|
182
|
+
import tseslint from 'typescript-eslint';
|
|
183
|
+
|
|
182
184
|
// eslint.config.js
|
|
183
185
|
import {
|
|
184
186
|
angular,
|
|
@@ -194,7 +196,6 @@ import {
|
|
|
194
196
|
unicorn,
|
|
195
197
|
vitest,
|
|
196
198
|
} from '@fabdeh/eslint-config';
|
|
197
|
-
import tseslint from 'typescript-eslint';
|
|
198
199
|
|
|
199
200
|
export default tseslint.config(
|
|
200
201
|
ignores(),
|