DEV Community

Cover image for Rails Coverage Tools: CodeFactor
Andrew Mason
Andrew Mason

Posted on

Rails Coverage Tools: CodeFactor

CodeFactor

According to their documentation:

CodeFactor instantly performs Code Review with every GitHub Commit or PR. Zero setup time. Get actionable feedback within seconds. Customize rules, get refactoring tips and ignore irrelevant issues.

In addition to automated code review, CodeFactor also has auto-fix functionality, which is pretty cool.

For Rails apps specifically, CodeFactor can check:

  • Yamllint
  • ESLint
  • stylelint
  • Rubocop

If this sounds interesting, let's look at how to set this up.

Tutorial

We will be creating a demo app to showcase how to utilize CodeFactor on your projects. The completed code can be found here if you'd like to just look over that.

If you'd like to build it together, let's get started!

Setup

Let's create a new Rails app and cd into it:

rails new codefactor_demo
cd codefactor_demo
Enter fullscreen mode Exit fullscreen mode

Create Repository

Open GitHub and create a new repository. I named mine codefactor_demo.

Open your command line again and let's upstream our code.

git add .
git commit -m "first commit"
git remote add origin https://github.com/YOUR_USERNAME/codefactor_demo.git
git push -u origin master
Enter fullscreen mode Exit fullscreen mode

Your code should now be online in your repo.

Configuration

Navigate to codefactor.io and log in with your preferred method. I chose to use my GitHub account.

codefactor_landing_page_1

Once logged in, you should be taken to your dashboard.

Add Repository

Let's add a new repository. From your CodeFactor dashboard, click Add, next to Repositories:

codefactor_dashboard_2

You will be taken to a screen that will let you search and select your desired repo. I am adding our demo project repo:

codefactor_add_repository_3

Click the Import button to import the repository.

Once your repository has been imported, it will show up on your dashboard:

codefactor_updated_dashboard_4

If we click on our repo, we will be taken to a show page for our repo:

codefactor_project_page_5

From here you can look at information about your repository and configure settings for the tools CodeFactor will use to check your repo.

README Badge

If we would like to add the CodeFactor README badge to our project, click the badge in the top right corner of the project page:

codefactor_badge_6

This will open a modal with a few format options for our badge. I simply copied the markdown code and pasted it on my README.

This badge should update as your code quality changes according to CodeFactor.

Summary

CodeFactor is a neat tool if you'd like to run some standard linters on your Rails project, like Rubocop and ESLint. The unfortunate part is that it doesn't look like you can add in tools other than the ones provided. The auto-fix functionality is really helpful if you'd not only like to run the linters but add a commit to the branch that fails checks.

Overall, I think this is a tool worth checking out. However, since I don't personally use the available tools for Rails projects, it wasn't as helpful to me personally as I hoped. Hopefully you will find different!

Helpful links

Happy coding!

P.S. If you aren't sure how to set up ESLint, Rubocop, or the other listed linters, leave a comment or message me on Twitter and let me know if you'd like a post about this!

Top comments (0)