how to exclude the values
Open
- Dominant language
- JavaScript
- Stars
- 1.8k
- Forks
- 197
- PR merge metrics
- No merged PRs in 30d
Description
How to exclude unflattening the values of the key?
```
'files.exclude': {
default: { '**/.git': true, '**/.svn': true, '**/.hg': true, '**/CVS': true, '**/.DS_Store': true },
}
```
Output:
----
```
{ files: {
exclude: {
"default": Object {
"**/": Object {
"DS_Store": true,
"git": true,
"hg": true,
"svn": true,
},
"**/CVS": true,
}
}
}
```
Expectation
---
```
{ files: { exclude: { default: { '**/.git': true, '**/.svn': true, '**/.hg': true, '**/CVS': true, '**/.DS_Store': true }}}}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.