@putout/plugin-apply-shorthand-properties
v5.1.1
Published
šPutout plugin adds ability to apply shorthand properties
Downloads
38,106
Maintainers
Readme
@putout/plugin-apply-shorthand-properties
š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