Add feature to disable dot-notation
See original GitHub issueHi! I’m working on a project that uses reverse-domain naming for namespaces, and we need to store some data with the namespace as the key. Where we’d expect
{
"cc.xylobol.test": {
"foo": "bar"
}
}
we end up with
{
"cc": {
"xylobol": {
"test": {
"foo": "bar"
}
}
}
}
instead due to the dot-notation. Is there a pre-existing way to disable this? If not, could it be added as a feature?
Thank you in advanced. Xylobol
IssueHunt Summary
yaodingyd has been rewarded.
Sponsors (Total: $40.00)
issuehunt ($40.00)
Tips
- Checkout the Issuehunt explorer to discover more funded issues.
- Need some help from other developers? Add your repositories on IssueHunt to raise funds.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:10 (2 by maintainers)
Top Results From Across the Web
disabling dot-notation in eslint - javascript - Stack Overflow
I'm having trouble disabling dot-notation ...
Read more >Add option to disable "Transform dot notation to bracket ...
Can we get an option to disable the new "Transform dot notation to bracket notation" functionality? We would like to keep our code...
Read more >dot-notation - ESLint - Pluggable JavaScript Linter
A pluggable and configurable linter tool for identifying and reporting on patterns in JavaScript. Maintain your code quality with ease.
Read more >Dot-walking examples - Product Documentation | ServiceNow
Access fields on a related table from a form, list, or script by dot-walking. This topic includes examples of the different ways that...
Read more >Dot Notation vs Array Notation in JavaScript - YouTube
Dot Notation vs Array Notation in JavaScript:We can use dot notation as well as array notation to access object properties.The dot notation ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I have hundreds of issues to triage. 4 days is not a lot of time to wait 😉
Currently,
confis using dot-prop to solve the config json.In this case:
It’s too much to get the
cc.xylobol.testwithdot-propbecause the code will like this:We could drop the
dot-propmodule and write a new module to solve the config json.