I am using gulp and I want to save formatting of my .js files with babeljs task, how can I perform this?
e.g. I have:
var
PC1 = 'Customer',
PC2 = 'Purchase Frequency',
PC3 = 'Purchase Value',
PC4 = 'Most Viewed Category',
PC5 = 'Brand',
PC6 = 'Reduced Price',
PC7 = 'Colour',
PC8 = 'Material',
PC9 = 'Gender',
PC10 = 'Size',
PC11 = 'Price';
It represents it into:
var PC1 = "Customer",
PC2 = "Purchase Frequency",
PC3 = "Purchase Value",
PC4 = "Most Viewed Category",
PC5 = "Brand",
PC6 = "Reduced Price",
PC7 = "Colour",
PC8 = "Material",
PC9 = "Gender",
PC10 = "Size",
PC11 = "Price";
How to avoid this?