@ololoepepe/eslint-config 0.1.0 → 0.1.1

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
@@ -4,6 +4,14 @@ All notable changes to this project are documented in this file. The format is
4
4
  based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this
5
5
  project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.1.1] - 2026-06-30
8
+
9
+ ### Fixed
10
+
11
+ - **react:** the `/react` layer now enforces **kebab-case filenames only**.
12
+ Previously it also allowed PascalCase (for component files); it now inherits
13
+ the base kebab-case rule.
14
+
7
15
  ## [0.1.0] - 2026-06-30
8
16
 
9
17
  A major modernization of the config. **This release contains breaking changes.**
@@ -49,4 +57,5 @@ A major modernization of the config. **This release contains breaking changes.**
49
57
  - JSX parsing in the base config: `@babel/eslint-parser@8` no longer enables JSX
50
58
  via `ecmaFeatures.jsx` alone; it now uses `babelOptions.parserOpts.plugins`.
51
59
 
60
+ [0.1.1]: https://gitlab.void-walkers.com/libs/eslint-config/-/releases/v0.1.1
52
61
  [0.1.0]: https://gitlab.void-walkers.com/libs/eslint-config/-/releases/v0.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ololoepepe/eslint-config",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "ESLint config",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/react.js CHANGED
@@ -27,15 +27,7 @@ export default [
27
27
  rules: {
28
28
  ...jsxStylisticRules,
29
29
  ...pluginReactRules,
30
- ...pluginReactHooksRules,
31
- // React components are conventionally PascalCase (e.g. `Button.jsx`), so
32
- // allow it alongside the base kebab-case for non-component files.
33
- 'unicorn/filename-case': ['error', {
34
- cases: {
35
- kebabCase: true,
36
- pascalCase: true
37
- }
38
- }]
30
+ ...pluginReactHooksRules
39
31
  },
40
32
  settings: {
41
33
  'react-x': {