@putout/plugin-apply-dot-notation
v3.0.0
Published
🐊Putout plugin applies dot notation
Maintainers
Readme
@putout/plugin-apply-dot-notation 
🐊Putout plugin adds ability to apply dot notation. Checkout out in 🐊Putout Editor.
Property accessors provide access to an object's properties by using the dot notation or the bracket notation.
(c) MDN
Install
npm i @putout/plugin-apply-dot-notationRule
{
"rules": {
"apply-dot-notation": "on"
}
}❌ Example of incorrect code
a.hello['world'];✅ Example of correct code
a.hello.world;
a[1];Comparison
Linter | Rule | Fix
--------|-------|------------|
🐊 Putout | apply-dot-notation | ✅
⏣ ESLint | dot-notation | ✅
📖 Blog | Converting-Bracket-Notation-Dot-Notation | ✅
License
MIT
