5.1.1 β€’ Published 8 months ago

@putout/plugin-apply-shorthand-properties v5.1.1

Weekly downloads
2,385
License
MIT
Repository
github
Last release
8 months ago

@putout/plugin-apply-shorthand-properties NPM version

🐊Putout plugin adds ability to apply shorthand properties.

Install

npm i @putout/plugin-apply-shorthand-properties -D

Config

{
    "rules": {
        "apply-shorthand-properties": ["on", {
            "ignore": []
        }]
    },
    "plugins": [
        "apply-shorthand-properties"
    ]
}

❌ Example of incorrect code

const AUTH_SESSION = 'xx';

export const setSession = (session) => ({
    type: AUTH_SESSION,
    payload: session,
});

βœ… Example of correct code

const type = 'xx';

export const setSession = (payload) => ({
    type,
    payload,
});

License

MIT