You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed [#8429](https://github.com/biomejs/biome/issues/8429). Formatter, linter, and assist settings now correctly inherit from global configuration when not explicitly specified in overrides.
6
+
7
+
Before this fix, when an override specified only one feature (e.g., only `linter`), other features would be incorrectly disabled instead of inheriting from global settings.
8
+
9
+
Example configuration that now works correctly:
10
+
```json
11
+
{
12
+
"formatter": { "enabled": true },
13
+
"overrides": [{
14
+
"includes": ["*.vue"],
15
+
"linter": { "enabled": false }
16
+
}]
17
+
}
18
+
```
19
+
20
+
After this fix, `.vue` files will have the linter disabled (as specified in the override) but the formatter enabled (inherited from global settings).
0 commit comments