eslint-plugin-code-style 1.8.3 → 1.8.4

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/CHANGELOG.md +22 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ---
9
9
 
10
+ ## [1.8.4] - 2026-02-03
11
+
12
+ ### Documentation
13
+
14
+ - Fix v1.8.0 CHANGELOG entry to include Release Title, Version Range, and Full Changelog link (required for MINOR releases)
15
+ - Add missing comparison links in CHANGELOG.md (v1.3.9 through v1.8.3)
16
+ - Update manage-rule skill with CHANGELOG format requirements for new rules
17
+ - Update Current releases list in AGENTS.md to include v1.8.0
18
+
19
+ ---
20
+
10
21
  ## [1.8.3] - 2026-02-03
11
22
 
12
23
  ### Fixed
@@ -41,9 +52,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
41
52
 
42
53
  ## [1.8.0] - 2026-02-03
43
54
 
55
+ **New Rule: no-hardcoded-strings**
56
+
57
+ **Version Range:** v1.6.1 → v1.8.0
58
+
44
59
  ### Added
45
60
 
46
- - **New Rule: `no-hardcoded-strings`** - Enforce importing strings from constants/strings modules instead of hardcoding them inline. Promotes maintainability, consistency, and easier internationalization.
61
+ **New Rules (1)**
62
+ - **`no-hardcoded-strings`** - Enforce importing strings from constants/strings modules instead of hardcoding them inline 🔧
47
63
  - Detects hardcoded strings in JSX text content, attributes, and component logic
48
64
  - Configurable `ignoreAttributes`, `extraIgnoreAttributes`, `ignorePatterns` options
49
65
  - Automatically ignores technical strings (CSS units, URLs, paths, identifiers, etc.)
@@ -60,6 +76,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
60
76
  - Auto-fixable: 63 rules 🔧
61
77
  - Report-only: 7 rules (was 6)
62
78
 
79
+ **Full Changelog:** [v1.6.1...v1.8.0](https://github.com/Mohamed-Elhawary/eslint-plugin-code-style/compare/v1.6.1...v1.8.0)
80
+
63
81
  ---
64
82
 
65
83
  ## [1.7.6] - 2026-02-02
@@ -1193,6 +1211,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1193
1211
 
1194
1212
  ---
1195
1213
 
1214
+ [1.8.4]: https://github.com/Mohamed-Elhawary/eslint-plugin-code-style/compare/v1.8.3...v1.8.4
1215
+ [1.8.3]: https://github.com/Mohamed-Elhawary/eslint-plugin-code-style/compare/v1.8.2...v1.8.3
1216
+ [1.8.2]: https://github.com/Mohamed-Elhawary/eslint-plugin-code-style/compare/v1.8.1...v1.8.2
1196
1217
  [1.8.1]: https://github.com/Mohamed-Elhawary/eslint-plugin-code-style/compare/v1.8.0...v1.8.1
1197
1218
  [1.8.0]: https://github.com/Mohamed-Elhawary/eslint-plugin-code-style/compare/v1.7.6...v1.8.0
1198
1219
  [1.7.6]: https://github.com/Mohamed-Elhawary/eslint-plugin-code-style/compare/v1.7.5...v1.7.6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-code-style",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
4
4
  "description": "A custom ESLint plugin for enforcing consistent code formatting and style rules in React/JSX projects",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",