Skip to content

Latest commit

 

History

History

plugin-convert-label-to-object

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

@putout/plugin-convert-label-to-object NPM version

A labeled statement is any statement that is prefixed with an identifier. You can jump to this label using a break or continue statement nested within the labeled statement. (c) MDN

🐊Putout plugin adds ability to find and convert label to object.

Checkout in 🐊Putout Editor.

Install

npm i @putout/plugin-convert-label-to-object

Rule

{
    "rules": {
        "convert-label-to-object": "on"
    }
}

❌ Example of incorrect code

const a = () => ({
    hello: 'world',
    x: 'm',
});

✅ Example of correct code

const a = () => ({
    hello: 'world',
    x: 'm',
});

License

MIT