Derek Armstrongderekarmstrong.dev·Feb 15, 2024A Practical Guide to Clean CodingIntroduction Remember the last time you tried to untangle that bundle of Christmas lights or wires that you swore was wrapped up ever so nicely the year before? That’s what it feels like to work with spaghetti code. The dreaded feeling of, what is th...39 reads👨🏻💻 Code CraftPython
Lucas SchnürigerforSoftware Engineering Cornersoftware-engineering-corner.zuehlke.com·May 2, 2023Breaking the Line: The Benefits of Limited Line Lengths"Everyone has widescreen monitors nowadays." This is the argument I often hear when I bring up the idea of enforcing a maximum line length in our code. And with that, the discussion is dismissed. However, I believe that this stance misses the point c...3 likes·144 readscode style
Steven Olsensrjsdev.hashnode.dev·Feb 2, 20233 New Features of Deno that Most JS Devs Don't Know AboutDeno is a modern, secure, and performant runtime for JavaScript and TypeScript. It is often compared to its progenitor NodeJS, and its zippy younger brother BunJS. Among Deno's main features are: Built-in Modules: Deno comes with a standard library ...7 likesDeno
Rodrigo Kamadarodrigokamada.hashnode.dev·Oct 12, 2022Adding the ESLint to an Angular applicationIntroduction In this article, a WEB application will be created using the latest version of Angular and added the ESLint which analyzes the code statically to find problems with the JavaScript code. Prerequisites Before you start, you need to install...26 readslint
Wisdom Geekwisdomgeek.hashnode.dev·Jun 5, 2021Enforcing coding standards using husky pre-commit hooksHaving consistency and enforcing coding standards becomes very important as an application scales. It becomes important to automate the process to ensure quality standards and make the application maintainable. ESLint and Prettier can be used to defi...JavaScript