Replies: 3 comments 12 replies
-
We use https://biomejs.dev/guides/how-biome-works/#syntax-rules-for-ignore-and-include |
Beta Was this translation helpful? Give feedback.
12 replies
-
In the last release (1.5.2), both approaches should work. You You can even include files and then ignore some of them. {
"files": {
"include": ["a/"],
"ignore": ["a/3/"]
}
} Please, lets me know if this satisfies your request :) |
Beta Was this translation helpful? Give feedback.
0 replies
-
The issue should now be solved. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Let's say I have a structure like this:
I'm using yarn workspaces. There are a lot more folders than this example.
I'm trying to get biome to only run on
a
andb
.Biome version: 1.5.0
What works excluding all folders with
files.ignore
What doesn't work: setting
files.include
to :["a", "b"]
(setting
formatter.include
also doesn't work)Here is the rest of my
biome.json
without anyinclude
/ignore
rulesBeta Was this translation helpful? Give feedback.
All reactions