@radham/eslint-config 10.1.0 → 11.0.0

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
@@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.
6
6
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
7
7
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
8
8
 
9
+ [11.0.0] - 2025-11-21
10
+ ---------------------
11
+
12
+ ### Changed
13
+
14
+ - Enabled `withDash` for the `unicorn/text-encoding-identifier-case` rule.
15
+
9
16
  [10.1.0] - 2025-11-19
10
17
  ---------------------
11
18
 
@@ -136,6 +143,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
136
143
 
137
144
  - Initial release.
138
145
 
146
+ [11.0.0]: https://github.com/jbenner-radham/eslint-config/compare/v10.1.0...v11.0.0
139
147
  [10.1.0]: https://github.com/jbenner-radham/eslint-config/compare/v10.0.0...v10.1.0
140
148
  [10.0.0]: https://github.com/jbenner-radham/eslint-config/compare/v9.0.0...v10.0.0
141
149
  [9.0.0]: https://github.com/jbenner-radham/eslint-config/compare/v8.1.0...v9.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@radham/eslint-config",
3
- "version": "10.1.0",
3
+ "version": "11.0.0",
4
4
  "description": "A shareable ESLint config with Stylistic.",
5
5
  "keywords": [
6
6
  "eslint",
package/src/index.js CHANGED
@@ -137,6 +137,7 @@ export default defineConfig([
137
137
  pkg: true // `package` is a reserved word.
138
138
  }
139
139
  }],
140
+ 'unicorn/text-encoding-identifier-case': ['error', { withDash: true }],
140
141
  camelcase: 'error',
141
142
  eqeqeq: ['error', 'smart'],
142
143
  'no-nested-ternary': 'off',