@putout/plugin-montag
v2.0.0
Published
šPutout plugin adds ability apply 'montag'
Downloads
29,031
Maintainers
Readme
@putout/plugin-apply-montag
Format multiline strings using tagged templates, instead of putting all lines into an array and joining to a string.
(c) Montag
šPutout plugin adds ability to apply Montag. Renamed to @putout/plugin-montag.
Install
npm i @putout/plugin-apply-montag
Rule
{
"rules": {
"montag/apply": "on",
"montag/declare": "on"
}
}
apply
ā Example of incorrect code
const a = [
'hello',
'world',
].join('\n');
ā Example of correct code
const a = montag`
hello
world
`;
declare
ā Example of incorrect code
const a = montag`
hello
world
`;
ā Example of correct code
import montag from 'montag';
const a = montag`
hello
world
`;
License
MIT