@labeg/code-style 6.10.4 → 6.10.6

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 (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +11 -0
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,26 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [6.10.6] - 2025-12-01
6
+
7
+ ### ⚙️ Miscellaneous Tasks
8
+
9
+ - Add scheduled cron job for NPM publish workflow
10
+
11
+ # Changelog
12
+
13
+ All notable changes to this project will be documented in this file.
14
+
15
+ ## [6.10.5] - 2025-12-01
16
+
17
+ ### ⚙️ Miscellaneous Tasks
18
+
19
+ - Update dependabot configuration and enhance README with ESLint plugins
20
+
21
+ # Changelog
22
+
23
+ All notable changes to this project will be documented in this file.
24
+
5
25
  ## [6.10.4] - 2025-12-01
6
26
 
7
27
  ### ⚙️ Miscellaneous Tasks
package/README.md CHANGED
@@ -16,6 +16,17 @@ Comprehensive ESLint configuration for TypeScript and React projects with strict
16
16
  - ✅ **Code style** enforcement (@stylistic)
17
17
  - ✅ **Modern JavaScript** standards
18
18
 
19
+ ## Included Plugins
20
+
21
+ This configuration includes and configures the following ESLint plugins:
22
+
23
+ - **[@eslint/js](https://www.npmjs.com/package/@eslint/js)** - Core ESLint JavaScript rules
24
+ - **[typescript-eslint](https://typescript-eslint.io/)** - TypeScript-specific linting rules
25
+ - **[@stylistic/eslint-plugin](https://eslint.style/)** - Code formatting and style rules
26
+ - **[eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react)** - React-specific linting rules
27
+ - **[eslint-plugin-react-hooks](https://www.npmjs.com/package/eslint-plugin-react-hooks)** - Rules for React Hooks
28
+ - **[eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y)** - Accessibility rules for JSX (commented out, see config)
29
+
19
30
  ## Installation
20
31
 
21
32
  Install the package as a dev dependency:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@labeg/code-style",
3
- "version": "6.10.4",
3
+ "version": "6.10.6",
4
4
  "author": "Eugene Labutin",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/LabEG/code-style#readme",