Replies: 3 comments 2 replies
-
Can't you write the override in the configuration you're extending? |
Beta Was this translation helpful? Give feedback.
1 reply
-
I'm trying to do it a different way but it is also not working: // biome.json
{
"extends": [".biome/default.json", ".biome/performant.json"]
}
// .biome/default.json
{
"extends": ["@repobuddy/biome/recommended.json"],
"files": { /* ... the usual ... */ }
}
// .biome/performant.json
{
"extends": ["@repobuddy/biome/performant.json"],
"files": { "includes": ["packages/low-level/src"] }
} It seems like the |
Beta Was this translation helpful? Give feedback.
0 replies
-
Did we ever get support for this, or no? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently,
extends
can only be defined at top level.This does not allow rules to be reused in overrides, specifically in monorepo.
For example:
Beta Was this translation helpful? Give feedback.
All reactions