@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": [],
"rename": false
}]
},
"plugins": [
"apply-shorthand-properties"
]
}
With default options
â Example of incorrect code
import {'b' as b} from 'b';
const {a: a} = b;
â Example of correct code
import {b} from 'b';
const {a} = b;
When rename
enabled
â 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,
});
Comparison
Linter | Rule | Fix |
---|---|---|
đ Putout | apply-shorthand-properties |
â |
⣠ESLint | no-useless-rename |
â |
License
MIT