Prettier ignore! 💁 #javascript
Prettier is super helpful but sometimes you just want to format things your way if the output of prettier is not very readable.
To solve this, prettier provides a comment that you can put above any "node" in the resulting javascript AST.
For example:
BEFORE (w/ prettier)
const street_number = this.findAddressComponent(
resultObj,
'street_number'
).long_name;
const route = this.findAddressComponent(resultObj, 'route').long_name;
const zip_code = this.findAddressComponent(resultObj, 'postal_code')
.long_name;
const city = this.findAddressComponent(resultObj, 'locality').long_name;
const state = this.findAddressComponent(
resultObj,
'administrative_area_level_1'
).short_name.toUpperCase();
The above is a result of prettier formatting and is not very readable or pretty - so I would need to turn it into a single AST node and put the prettier-ignore
comment over it:
AFTER (w/ prettier-ignore)
// prettier-ignore
const address = {
street_number: this.findAddressComponent(resultObj, 'street_number').long_name,
route: this.findAddressComponent(resultObj, 'route').long_name,
zip_code: this.findAddressComponent(resultObj, 'postal_code').long_name,
city: this.findAddressComponent(resultObj, 'locality').long_name,
state: this.findAddressComponent(resultObj, 'administrative_area_level_1').short_name.toUpperCase(),
}
Now the address components will be accessible from the address object (e.g. address.route
) and while still not the prettiest, it is a lot more readable IMO.