@aristobyte-ui/eslint-config 2.1.0 → 2.1.3

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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -36,21 +36,21 @@ Extend one of the provided configs in your `eslint.config.js` (Flat Config):
36
36
  **Base (TypeScript + general rules):**
37
37
 
38
38
  ```js
39
- import { config } from "@aristobyte-ui/eslint-config/base";
39
+ import { config } from '@aristobyte-ui/eslint-config/base';
40
40
  export default config;
41
41
  ```
42
42
 
43
43
  **React (includes React + Hooks best practices):**
44
44
 
45
45
  ```js
46
- import { config } from "@aristobyte-ui/eslint-config/react";
46
+ import { config } from '@aristobyte-ui/eslint-config/react';
47
47
  export default config;
48
48
  ```
49
49
 
50
50
  **Next.js (includes React + Next.js rules):**
51
51
 
52
52
  ```js
53
- import { nextJsConfig } from "@aristobyte-ui/eslint-config/next";
53
+ import { nextJsConfig } from '@aristobyte-ui/eslint-config/next';
54
54
  export default nextJsConfig;
55
55
  ```
56
56
 
@@ -70,7 +70,7 @@ export default nextJsConfig;
70
70
  "lint": "eslint ."
71
71
  },
72
72
  "devDependencies": {
73
- "@aristobyte-ui/eslint-config": "*",
73
+ "@aristobyte-ui/eslint-config": "2.0.0",
74
74
  "eslint": "^9.0.0"
75
75
  }
76
76
  }
@@ -79,7 +79,7 @@ export default nextJsConfig;
79
79
  And `eslint.config.js:`
80
80
 
81
81
  ```js
82
- import { config } from "@aristobyte-ui/eslint-config/react";
82
+ import { config } from '@aristobyte-ui/eslint-config/react';
83
83
  export default config;
84
84
  ```
85
85
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aristobyte-ui/eslint-config",
3
3
  "description": "AristoByteUI ESLint configuration presets for TypeScript, React, and Next.js packages. Provides base, React, and Next.js rules optimized for monorepo workflows, Prettier integration, and developer productivity.",
4
- "version": "2.1.0",
4
+ "version": "2.1.3",
5
5
  "private": false,
6
6
  "license": "MIT",
7
7
  "type": "module",