@labeg/code-style 6.10.3 → 6.10.5
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 +21 -0
- package/README.md +11 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [6.10.5] - 2025-12-01
|
|
6
|
+
|
|
7
|
+
### ⚙️ Miscellaneous Tasks
|
|
8
|
+
|
|
9
|
+
- Update dependabot configuration and enhance README with ESLint plugins
|
|
10
|
+
|
|
11
|
+
# Changelog
|
|
12
|
+
|
|
13
|
+
All notable changes to this project will be documented in this file.
|
|
14
|
+
|
|
15
|
+
## [6.10.4] - 2025-12-01
|
|
16
|
+
|
|
17
|
+
### ⚙️ Miscellaneous Tasks
|
|
18
|
+
|
|
19
|
+
- *(deps)* Bump actions/checkout from 5 to 6 (#16)
|
|
20
|
+
- Remove unnecessary labels from dependabot configuration
|
|
21
|
+
|
|
22
|
+
# Changelog
|
|
23
|
+
|
|
24
|
+
All notable changes to this project will be documented in this file.
|
|
25
|
+
|
|
5
26
|
## [6.10.3] - 2025-11-17
|
|
6
27
|
|
|
7
28
|
### ⚙️ 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:
|