Hacker News new | ask | show | jobs
by xet7 971 days ago
This article is similar to https://deno.com/blog/node-config-hell

What I did, is I removed all linters, like eslint, prettier etc, because they did disagree about syntax. Point is to make to code minimal change, that fixes something, or adds some feature. Not that most commits would be about fixing syntax.

I also merged all branches to one main branch, because merging between branches did take a lot of time.

What if there would be no build step? DHH has some nice ideas about that:

https://world.hey.com/dhh/you-can-t-get-faster-than-no-build...

Let's make progress towards less complicated stacks.