@ololoepepe/eslint-config 0.1.3 → 0.1.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.
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.4] - 2026-07-02
8
+
9
+ ### Changed
10
+
11
+ - **base:** `import-x/no-relative-parent-imports` now ignores subpath-import
12
+ specifiers starting with `#` (e.g. `import x from '#src/y.js'`), so the
13
+ `#src/*` imports map convention no longer triggers the rule.
14
+
7
15
  ## [0.1.3] - 2026-07-02
8
16
 
9
17
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ololoepepe/eslint-config",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "ESLint config",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -48,7 +48,9 @@ export const rules = {
48
48
  'import-x/no-namespace': 'off',
49
49
  'import-x/no-nodejs-modules': 'off',
50
50
  'import-x/no-relative-packages': 'off',
51
- 'import-x/no-relative-parent-imports': 'warn',
51
+ 'import-x/no-relative-parent-imports': ['warn', {
52
+ ignore: ['^#']
53
+ }],
52
54
  'import-x/no-rename-default': 'off',
53
55
  'import-x/no-restricted-paths': 'off',
54
56
  'import-x/no-self-import': 'error',