@eslinted/core 13.4.0-rc.3 → 13.4.0-rc.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.
@@ -30,7 +30,7 @@ export class Factory {
30
30
  this.scopes.files[scope].push(...moreFiles);
31
31
  this.scopes.ignores[scope].push(...moreIgnores);
32
32
  if (moreRules !== null)
33
- this.scopes.rules[scope].push([`${scope}:override`, moreRules]);
33
+ this.scopes.rules[scope].push([`${scope}/override`, moreRules]);
34
34
  tree.forEach(([scope, parents]) => {
35
35
  parents.forEach(parent => {
36
36
  this.scopes.files[parent].push(...this.scopes.files[scope]);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "_schemaVersion": "22.11.0",
3
3
  "name": "@eslinted/core",
4
- "version": "13.4.0-rc.3",
4
+ "version": "13.4.0-rc.4",
5
5
  "description": "Core ESLint flat config factory npm package `linted`.",
6
6
  "keywords": [],
7
7
  "repository": "github:jimmy-zhening-luo/linted-core",
@@ -59,7 +59,7 @@ export class Factory {
59
59
  this.scopes.ignores[scope as keyof typeof scopeExtensions].push(...moreIgnores);
60
60
 
61
61
  if (moreRules !== null)
62
- this.scopes.rules[scope as keyof typeof scopeExtensions].push([`${scope}:override`, moreRules]);
62
+ this.scopes.rules[scope as keyof typeof scopeExtensions].push([`${scope}/override`, moreRules]);
63
63
 
64
64
  tree.forEach(([scope, parents]) => {
65
65
  parents.forEach(parent => {