@matteocollina Bad advice. New developers who follow such advice may set themselves up for failure when their app becomes sluggish in production and usets/customers switch to performant alternatives.
Use caching with eslint to reduce eslint build time drastically. In a large code base it reduced from 10+ hours to around 1 min.
Reference:
https://t.co/N0pL3jqV6D
#Frontend#eslint#performance
@walkingriver The fact that Date constructor returns UTC date for YYYY-MM-DD and local date for YYYY-MM-DDTHH:NN:SS and YYYY,MM,DD format strings was major source of subtle bugs, especially when the frontend and backend are in different timezones.
@walkingriver Yeah. Didn't notice it being out of order. Fun fact - about a year ago I had clear up multiple such subtle issues. Eventually, I created a utility service for date in my project. All dates would only be created from that Service.