@eslinted/core 13.4.0-rc.2 → 13.4.0-rc.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.2",
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 => {