eslint-plugin-spellbookx 0.7.0 → 0.7.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.
@@ -1,12 +1,12 @@
1
1
 
2
- > eslint-plugin-spellbookx@0.7.0 build /home/runner/work/spellbookx/spellbookx/packages/eslint-plugin-spellbookx
2
+ > eslint-plugin-spellbookx@0.7.1 build /home/runner/work/spellbookx/spellbookx/packages/eslint-plugin-spellbookx
3
3
  > rolldown -c
4
4
 
5
5
  [log] <DIR>/types.js chunk │ size: 0.32 kB
6
- [log] <DIR>/index.js chunk │ size: 10.87 kB
6
+ [log] <DIR>/index.js chunk │ size: 10.88 kB
7
7
  [log]
8
- [success] rolldown v1.0.0-rc.1 Finished in 17.05 ms
8
+ [success] rolldown v1.0.0-rc.1 Finished in 13.53 ms
9
9
 
10
- > eslint-plugin-spellbookx@0.7.0 postbuild /home/runner/work/spellbookx/spellbookx/packages/eslint-plugin-spellbookx
10
+ > eslint-plugin-spellbookx@0.7.1 postbuild /home/runner/work/spellbookx/spellbookx/packages/eslint-plugin-spellbookx
11
11
  > tsc
12
12
 
@@ -1 +1 @@
1
- {"version":3,"file":"ignores.d.ts","sourceRoot":"","sources":["../../src/configs/ignores.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAGrC,QAAA,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EA0FhC,CAAC;AAEH,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"ignores.d.ts","sourceRoot":"","sources":["../../src/configs/ignores.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAGrC,QAAA,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EA6FhC,CAAC;AAEH,eAAe,aAAa,CAAC"}
package/dist/index.js CHANGED
@@ -109,7 +109,8 @@ const configIgnores = defineConfig([globalIgnores([
109
109
  "**/System Volume Information/**",
110
110
  "**/pagefile.sys",
111
111
  "**/swapfile.sys",
112
- "**/hiberfil.sys"
112
+ "**/hiberfil.sys",
113
+ "**/*.hbs"
113
114
  ])]);
114
115
  var ignores_default = configIgnores;
115
116
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-spellbookx",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "private": false,
5
5
  "description": "Shared ESLint plugin and configs tuned for the Spellbookx monorepo and common JS/TS frameworks.",
6
6
  "keywords": [
@@ -63,7 +63,7 @@
63
63
  "eslint": "^9.39.2",
64
64
  "rolldown": "1.0.0-rc.1",
65
65
  "typescript": "5.9.2",
66
- "@spellbookx/typescript-config": "0.7.0"
66
+ "@spellbookx/typescript-config": "0.7.1"
67
67
  },
68
68
  "peerDependencies": {
69
69
  "eslint": "^9.39.2"
@@ -90,6 +90,9 @@ const configIgnores: Linter.Config[] = defineConfig([
90
90
  '**/pagefile.sys',
91
91
  '**/swapfile.sys',
92
92
  '**/hiberfil.sys',
93
+
94
+ // Other unsupported files
95
+ '**/*.hbs',
93
96
  ]),
94
97
  ]);
95
98