@abinnovision/eslint-config-react 3.0.1 → 3.0.3-beta.7

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.0.2](https://github.com/abinnovision/js-commons/compare/eslint-config-react-v3.0.1...eslint-config-react-v3.0.2) (2025-11-19)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * update Tailwind CSS rule to prefer single line wrapping with tab indentation ([#563](https://github.com/abinnovision/js-commons/issues/563)) ([6a40325](https://github.com/abinnovision/js-commons/commit/6a40325eb9dda8532b900a68c4e11f9b91afea80))
9
+
3
10
  ## [3.0.1](https://github.com/abinnovision/js-commons/compare/eslint-config-react-v3.0.0...eslint-config-react-v3.0.1) (2025-11-08)
4
11
 
5
12
 
package/dist/index.cjs CHANGED
@@ -222,7 +222,11 @@ var config2 = (0, import_config2.defineConfig)([
222
222
  *
223
223
  * @see https://github.com/schoero/eslint-plugin-better-tailwindcss
224
224
  */
225
- "better-tailwindcss/enforce-consistent-line-wrapping": "warn",
225
+ "better-tailwindcss/enforce-consistent-line-wrapping": [
226
+ "warn",
227
+ // Prefer single line when possible. We use tabs for indentation.
228
+ { preferSingleLine: true, indent: "tab" }
229
+ ],
226
230
  /**
227
231
  * Enforce consistent class order.
228
232
  *
package/dist/index.js CHANGED
@@ -185,7 +185,11 @@ var config2 = defineConfig2([
185
185
  *
186
186
  * @see https://github.com/schoero/eslint-plugin-better-tailwindcss
187
187
  */
188
- "better-tailwindcss/enforce-consistent-line-wrapping": "warn",
188
+ "better-tailwindcss/enforce-consistent-line-wrapping": [
189
+ "warn",
190
+ // Prefer single line when possible. We use tabs for indentation.
191
+ { preferSingleLine: true, indent: "tab" }
192
+ ],
189
193
  /**
190
194
  * Enforce consistent class order.
191
195
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abinnovision/eslint-config-react",
3
- "version": "3.0.1",
3
+ "version": "3.0.3-beta.7",
4
4
  "publishConfig": {
5
5
  "npm": true,
6
6
  "ghpr": true,
@@ -47,12 +47,12 @@
47
47
  },
48
48
  "prettier": "@abinnovision/prettier-config",
49
49
  "dependencies": {
50
- "@eslint-react/eslint-plugin": "^2.0.0",
51
- "eslint-plugin-better-tailwindcss": "^3.0.0",
52
- "eslint-plugin-react-hooks": "^7.0.0"
50
+ "@eslint-react/eslint-plugin": "^2.13.0",
51
+ "eslint-plugin-better-tailwindcss": "^4.3.0",
52
+ "eslint-plugin-react-hooks": "^7.0.1"
53
53
  },
54
54
  "devDependencies": {
55
- "@abinnovision/eslint-config-base": "^3.0.1",
55
+ "@abinnovision/eslint-config-base": "^3.0.3-beta.4",
56
56
  "@abinnovision/prettier-config": "^2.1.5",
57
57
  "eslint": "^9.39.1",
58
58
  "prettier": "^3.6.2",
@@ -60,6 +60,6 @@
60
60
  "typescript": "^5.9.3"
61
61
  },
62
62
  "peerDependencies": {
63
- "eslint": "^9.0.0"
63
+ "eslint": "^9.0.0 || ^10.0.0"
64
64
  }
65
65
  }