rbin-task-flow 1.19.0 → 1.19.1

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.
@@ -85,6 +85,29 @@ In **front web** (Next.js, React) or **mobile** (Expo, React Native) projects, e
85
85
  - **Validation**: Zod (not class-validator/class-transformer)
86
86
  - **Structure**: `src/app/` (controllers), `src/features/` (use-cases, repositories), `src/shared/` (guards, pipes, gateways)
87
87
 
88
+ ### ESLint — @rbinflow/eslint-config
89
+
90
+ When the project uses `@rbinflow/eslint-config`, **do not add any other ESLint plugins or configs** — `@rbinflow/eslint-config` already configures everything. The `.eslintrc.cjs` file must stay minimal:
91
+
92
+ **Available configurations:**
93
+
94
+ | Project type | extends |
95
+ |--------------|---------|
96
+ | Node.js (no semicolons) | `@rbinflow/eslint-config/node` |
97
+ | Node.js (with semicolons) | `@rbinflow/eslint-config/node-with-semi` |
98
+ | React | `@rbinflow/eslint-config/react` |
99
+ | Next.js | `@rbinflow/eslint-config/next` |
100
+ | Expo | `@rbinflow/eslint-config/expo` |
101
+
102
+ **Example (.eslintrc.cjs):**
103
+ ```javascript
104
+ module.exports = {
105
+ extends: ['@rbinflow/eslint-config/next'],
106
+ }
107
+ ```
108
+
109
+ **Node.js variants:** `node` uses `semi: false`; `node-with-semi` uses `semi: true`. All other settings are identical. No extra `plugins`, `rules`, or `extends` beyond this.
110
+
88
111
  ---
89
112
 
90
113
  ## app/ — Routes Only (Front-end & Mobile) / Controllers Only (Backend)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rbin-task-flow",
3
- "version": "1.19.0",
3
+ "version": "1.19.1",
4
4
  "description": "AI-powered task management for Claude and Cursor",
5
5
  "main": "index.js",
6
6
  "bin": {