@aristobyte-ui/eslint-config 1.0.2 → 1.0.5
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/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ Example for a React package:
|
|
|
44
44
|
|
|
45
45
|
```js
|
|
46
46
|
import base from "@aristobyte-ui/eslint-config/base";
|
|
47
|
-
import react from "@aristobyte-ui/eslint-config/react";
|
|
47
|
+
import react from "@aristobyte-ui/eslint-config/eslint.react.js";
|
|
48
48
|
|
|
49
49
|
export default [...base, ...react];
|
|
50
50
|
```
|
|
@@ -53,7 +53,7 @@ Or for a Next.js app:
|
|
|
53
53
|
|
|
54
54
|
```js
|
|
55
55
|
import base from "@aristobyte-ui/eslint-config/base";
|
|
56
|
-
import next from "@aristobyte-ui/eslint-config/next";
|
|
56
|
+
import next from "@aristobyte-ui/eslint-config/eslint.next.js";
|
|
57
57
|
|
|
58
58
|
export default [...base, ...next];
|
|
59
59
|
```
|
package/package.json
CHANGED