Latest Updates

Documenting code, one commit at a time.

ESLint 3 posts
×

Automating Code Style with GitHub Actions and ESLint

The Problem

In the learn-cicd-typescript-starter project, our goal is to establish robust CI/CD practices. A common challenge in collaborative TypeScript development is maintaining consistent code style. Without automated enforcement, developers can introduce varying formatting, leading to a fragmented codebase, increased merge conflicts, and more time spent on style corrections during

Read more

Streamlining Code Quality with ESLint in GitHub Actions CI

The learn-cicd-typescript-starter project aims to provide a robust foundation for building TypeScript applications with continuous integration and delivery practices. A recent enhancement focused on integrating robust code quality checks directly into the development workflow to ensure consistency and prevent common errors.

The Challenge of Code Consistency

Maintaining a consistent code

Read more