Extend an official ESLint's HTML Formatter
Why we decide to extend an official ESLint’s HTML formatter
Background Story ⛈
In my daily job, we are using ESLint in almost all of our repository especially for our FrontEnd (FE) code (because I only work in FE repository). Ideally, developers should run ESLint in its development phase and make sure all branch that he working for is clean from ESLint warnings and errors. For the sake of teams, we also put git hook using husky
to run ESLint before pushing changes to its origin. But it wasn’t enough for our current flow, I don’t know why, sometimes still there is a code that not passing ESLint’s rule in the origin branch. Recently, we put this ESLint script into our Continuous Integration (CI) process.
Unfortunately, our developers are not very like to read full-log in our CI tools, they like to see separate HTML report for each stage in CI. After reading official documentation from ESLint, I found the section about ESLint formatter ↗️. We can create HTML report with this formatter.
We doing trial and error for proof of concept (POC) about producing HTML report from our ESLint. After a day using official HTML reporter in our CI, we found that official HTML formatter prevent from creating a log when there is some error that makes it exit with code 1. We can see the HTML report but we lost our log. It’s not our expectation.
Finally, we decide to create our own formatter that combined the power of HTML reporter and keep the log exist in our log system.
We call it as eslint-formatter-html-extended
!
Unboxing 📦
Basically, we don’t want to reinvent the wheel. So, we just combining two types of formatters from ESLint. We choose HTML formatter by JulianLaval ↗️ and Stylish formatter by Sindre Sorhus ↗️. We also adding some little touch in HTML output report to be more beautiful and easy to navigate.
Usage ☀️
Install dependencies via script:
$ yarn add eslint-formatter-html-extended -D
# OR
$ npm i eslint-formatter-html-extended --dev
Refer to this docs ↗️, you just need to add the parameter -f nameFormatter -o nameFile
in your ESLint CLI script, e.g.:
$ eslint --ext .js . -f html-extended -o eslint-report.html
This formatter is published as open source that you can see in Github repository ↗️, feel free to fork or submit a new issue.