@kekkai/structure-lint 1.1.0 → 1.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/README.md CHANGED
@@ -1,6 +1,8 @@
1
+ [![codecov](https://codecov.io/gh/taco3064/kekkai-structure-lint/branch/main/graph/badge.svg)](https://codecov.io/gh/taco3064/kekkai-structure-lint)
2
+
1
3
  **English** | [繁體中文](https://github.com/taco3064/kekkai-structure-lint/blob/main/README.zh-TW.md)
2
4
 
3
- # 📦 @kekkai/structure-lint
5
+ # @kekkai/structure-lint
4
6
 
5
7
  A **config-driven** ESLint structure rule generator that enforces **one-way folder dependency flow** in your project, with a separate CLI for syncing and validating dependency rules in documentation.
6
8
 
package/README.zh-TW.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![codecov](https://codecov.io/gh/taco3064/kekkai-structure-lint/branch/main/graph/badge.svg)](https://codecov.io/gh/taco3064/kekkai-structure-lint)
2
+
1
3
  [English](https://github.com/taco3064/kekkai-structure-lint/blob/main/README.md) | **繁體中文**
2
4
 
3
5
  # 📦 @kekkai/structure-lint
package/dist/index.js CHANGED
@@ -85,7 +85,7 @@ function createStructureLint(config) {
85
85
  patterns: [
86
86
  {
87
87
  group: ["./../**", "././**"],
88
- message: "🚫 Redundant relative path segments (././, ./../) are not allowed. They bypass structural import rules."
88
+ message: "\n🚫 Redundant relative path segments (././, ./../) are not allowed. They bypass structural import rules."
89
89
  },
90
90
  {
91
91
  group: [moduleLayout === "folder" ? "../*/**" : "../**"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kekkai/structure-lint",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "license": "MIT",
5
5
  "description": "Config-driven ESLint structure rule generator enforcing one-way folder dependency flow, with a separate CLI for docs sync/verification.",
6
6
  "type": "module",