@eslinted/core 13.4.0-rc.3 → 13.4.0-rc.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/factory/index.js +1 -1
- package/package.json +1 -1
- package/src/factory/index.ts +1 -1
package/dist/factory/index.js
CHANGED
@@ -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}
|
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
package/src/factory/index.ts
CHANGED
@@ -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}
|
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 => {
|